Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Utilidades/src/strPrueba.py
blob: f80694695e1199bd49be39e401eab21d2224ae5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#! /usr/bin/env python
import sys, os
import PuiModule

def main():	
	pui = PuiModule.Pui()
	pui.getModuleInfo()
	pui.insert("string insertado!")
	print 'hice insert'
	str = pui.out()
	print str	
	print 'hice out'
	pui.insert("balbabalalab!!")
	print 'hice insert'
	str = pui.out()
	print str	
	print 'hice out2'

			
if __name__ == "__main__":
    main()