##// END OF EJS Templates
- Eliminando error por duplicidad con el nombre del paquete: abscontrol y la aplicacion web con django. El nuevo nombre aplicado es bin.
- Eliminando error por duplicidad con el nombre del paquete: abscontrol y la aplicacion web con django. El nuevo nombre aplicado es bin.

File last commit:

r161:162
r165:166
Show More
test6.py
19 lines | 395 B | text/x-python | PythonLexer
testing threading
r159 import threading
import datetime
threading tests
r161 txFile = list("-" for i in range(6))
print txFile
testing threading
r159 class ThreadClass(threading.Thread):
def run(self):
threading tests
r161 # 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))
testing threading
r159 t.start()
threading tests
r161
print txFile