diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2012-02-21 19:03:47 +0100 |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2012-02-21 19:03:47 +0100 |
commit | d97583b17c8a6a0a8a19dca5bd4faa1b9a9314bc (patch) | |
tree | b9f4cc003fb87bfe1f06596baf5e821eb9e72b08 /Python/pythonrun.c | |
parent | e8c17ec6cf96cb6b99c3ed5d0abb0f03a843701a (diff) | |
download | cpython-d97583b17c8a6a0a8a19dca5bd4faa1b9a9314bc.tar.gz |
Fix test failure in test_cmd_line by initializing the hash secret at the earliest point.
Diffstat (limited to 'Python/pythonrun.c')
-rw-r--r-- | Python/pythonrun.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c index 718362d479..584a19b426 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -70,7 +70,6 @@ extern void _PyUnicode_Init(void); extern void _PyUnicode_Fini(void); extern int _PyLong_Init(void); extern void PyLong_Fini(void); -extern void _PyRandom_Init(void); #ifdef WITH_THREAD extern void _PyGILState_Init(PyInterpreterState *, PyThreadState *); |