summaryrefslogtreecommitdiffstats
path: root/Python/pythonrun.c
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2014-08-28 16:30:00 (GMT)
committerBenjamin Peterson <benjamin@python.org>2014-08-28 16:30:00 (GMT)
commit57057a6624e1b12beb61eb2f817f9de95bb7d47a (patch)
tree2029c7946952e9f0eace8f7d730f5d265d0c1bf9 /Python/pythonrun.c
parent0062d1e7f42b3036aa02701c723ff63d1d3d6028 (diff)
downloadcpython-57057a6624e1b12beb61eb2f817f9de95bb7d47a.zip
cpython-57057a6624e1b12beb61eb2f817f9de95bb7d47a.tar.gz
cpython-57057a6624e1b12beb61eb2f817f9de95bb7d47a.tar.bz2
PEP 466: backport persistent urandom fd (closes #21305)
Patch from Alex Gaynor.
Diffstat (limited to 'Python/pythonrun.c')
-rw-r--r--Python/pythonrun.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c
index 748a63b..05bb62b 100644
--- a/Python/pythonrun.c
+++ b/Python/pythonrun.c
@@ -536,6 +536,7 @@ Py_Finalize(void)
PyInt_Fini();
PyFloat_Fini();
PyDict_Fini();
+ _PyRandom_Fini();
#ifdef Py_USING_UNICODE
/* Cleanup Unicode implementation */