From 3fd7c70391fef9a1593b25a808766c352239e958 Mon Sep 17 00:00:00 2001 From: Igor Pashev Date: Wed, 10 Apr 2013 11:42:21 +0400 Subject: Adapt Debian patches --- python2.7/patches/issue15340.diff | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 python2.7/patches/issue15340.diff (limited to 'python2.7/patches/issue15340.diff') diff --git a/python2.7/patches/issue15340.diff b/python2.7/patches/issue15340.diff new file mode 100644 index 0000000..31cc6ed --- /dev/null +++ b/python2.7/patches/issue15340.diff @@ -0,0 +1,16 @@ +# 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 8cd6acffbcb9 -r edbf37ace03c Python/random.c +--- a/Python/random.c Fri Sep 07 00:55:33 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; + } + -- cgit v1.2.3