The Written Word added the comment:

The root of the problem preventing me from running some 3rd party setup.py 
scripts correctly is the mismatch between (recently) raising an OSError in 
Python/random.c, but catching only NotImplementedError in Lib/random.py.

For backwards compatibility (previous releases all raised and caught 
NotImplementedError), here is a patch that stops Python bailing out with 
"OSError: No such file or directory /dev/urandom" for me.  Tested with 
Python-2.6.8, Python-2.7.3 and Python-3.2.3, on HPUX 11.00, HPUX 11.11 and Tru 
64 5.1.

Arguably, as long as 3rd party code doesn't rely on the NotImplementedError 
exception, changing random.py to catch OSErrors would work equally well.

This patch does not stop dev_urandom_noraise() from halting the interpreter on 
machines with no /dev/urandom, but that seems intentional to me so I didn't try 
to fix it.

----------
components: +Interpreter Core -Library (Lib)
keywords: +patch
Added file: 
http://bugs.python.org/file27070/hash-randomization-not-implemented.patch

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue15340>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to