# DP: - Issue #15340: Fix importing the random module when /dev/urandom cannot
# DP:   be opened.  This was a regression caused by the hash randomization patch.

diff -r abb858a0740f -r 2e8b01583839 Python/random.c
--- a/Python/random.c	Fri Sep 07 02:24:58 2012 +0200
+++ b/Python/random.c	Fri Sep 07 23:49:07 2012 +0200
@@ -165,7 +165,8 @@
     Py_END_ALLOW_THREADS
     if (fd < 0)
     {
-        PyErr_SetFromErrnoWithFilename(PyExc_OSError, "/dev/urandom");
+        PyErr_SetString(PyExc_NotImplementedError,
+                        "/dev/urandom (or equivalent) not found");
         return -1;
     }
 
