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 | 86838b02f04a01445778584afb7acd0b05081335 (patch) | |
tree | e70c00698519271b4431d7aed8a339228b372f9f /Python/pythonrun.c | |
parent | dbd3f6173a0dd15c97b60be56cc37ff1cf5487e5 (diff) | |
download | cpython-git-86838b02f04a01445778584afb7acd0b05081335.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 *); |