summaryrefslogtreecommitdiff
path: root/Python/pythonrun.c
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2014-08-28 12:30:00 -0400
committerBenjamin Peterson <benjamin@python.org>2014-08-28 12:30:00 -0400
commit57057a6624e1b12beb61eb2f817f9de95bb7d47a (patch)
tree2029c7946952e9f0eace8f7d730f5d265d0c1bf9 /Python/pythonrun.c
parent0062d1e7f42b3036aa02701c723ff63d1d3d6028 (diff)
downloadcpython-git-57057a6624e1b12beb61eb2f817f9de95bb7d47a.tar.gz
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 748a63b955..05bb62b64a 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 */