##// END OF EJS Templates
- Agregada la funcion que permite enviar un archivo a la API cliente de ABS CONTROL.
- Agregada la funcion que permite enviar un archivo a la API cliente de ABS CONTROL.

File last commit:

r161:162
r167:168
Show More
test6.py
19 lines | 395 B | text/x-python | PythonLexer
import threading
import datetime
txFile = list("-" for i in range(6))
print txFile
class ThreadClass(threading.Thread):
def run(self):
# now = datetime.datetime.now()
# print "%s says Hello World at time: %s" % (self.getName(), now)
txFile[int(self.getName())] = self.getName()
for i in range(6):
t = ThreadClass(name = str(i))
t.start()
print txFile