Return to Snippet

Revision: 6520
at May 27, 2008 05:38 by buscarini


Initial Code
En "python_dir"/Lib/random.py, por la línea 108, más o menos.



 if a is None:
            #try:
             #   a = long(_hexlify(_urandom(16)), 16)
            #except NotImplementedError:
            import time
            a = long(time.time() * 256) # use fractional seconds

Initial URL


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

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

Initial Tags


Initial Language
Python