##// END OF EJS Templates
- Ejecutando el script de cambio de apunte....
- Ejecutando el script de cambio de apunte. - Actualizado el archivo requirements.txt para instalar las librerias necesarias para el proyecto. - Instalado South para el manejo de actualizaciones de los modelos(actualizacion de tablas).

File last commit:

r161:162
r204:205
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