diff options
author | Benjamin Peterson <benjamin@python.org> | 2014-08-28 12:30:00 -0400 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2014-08-28 12:30:00 -0400 |
commit | 57057a6624e1b12beb61eb2f817f9de95bb7d47a (patch) | |
tree | 2029c7946952e9f0eace8f7d730f5d265d0c1bf9 /Python/pythonrun.c | |
parent | 0062d1e7f42b3036aa02701c723ff63d1d3d6028 (diff) | |
download | cpython-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.c | 1 |
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 */ |