Ver Mensaje Individual
  #1 (permalink)  
Antiguo 03/04/2013, 06:04
Victoria222
 
Fecha de Ingreso: marzo-2013
Mensajes: 19
Antigüedad: 11 años, 7 meses
Puntos: 0
Problema libreria time, trheading

Buenas tengo este c'odigo en python:

Código Python:
Ver original
  1. from time
  2. from threading import Thread
  3.  
  4. def myfunc(i):
  5.     print "sleeping 5 sec from thread %d" % i
  6.     time.sleep(5)
  7.     print "finished sleeping from thread %d" % i
  8.  
  9. for i in range(10):
  10.     t = Thread(target=myfunc, args=(i,))
  11.     t.start()
pero me devuelve este error:
Código:
Traceback (most recent call last):
  File "./time.py", line 16, in <module>
    import time 

   from threading import Thread
  File "/usr/lib64/python2.7/threading.py", line 13, in <module>
    from time import time as _time, sleep as _sleep
ImportError: cannot import name sleep
Creo que me falta la libreria, como ago para instalarla?? he provado pip pero no lo consigo...

Gracias!!

Última edición por razpeitia; 03/04/2013 a las 09:48