Código a tocar para usar twisted desde un servicio de red en windows


/ Published in: Python
Save to your folder(s)

Al intentar importar reactor windows da un error de acceso denegado.


Copy this code and paste it in your HTML
  1. En "python_dir"/Lib/random.py, por la línea 108, más o menos.
  2.  
  3.  
  4.  
  5. if a is None:
  6. #try:
  7. # a = long(_hexlify(_urandom(16)), 16)
  8. #except NotImplementedError:
  9. import time
  10. a = long(time.time() * 256) # use fractional seconds

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.