diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2012-02-21 19:08:26 +0100 |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2012-02-21 19:08:26 +0100 |
commit | 0c4142570ac0029bd833d4d7a2f815b4e1a5432e (patch) | |
tree | c183c1eaeedc19575c5cf130f7c90e1cd4568bfa /Python/pythonrun.c | |
parent | 40be1092f2069f128a0b84cb34c7efdba0bb7120 (diff) | |
parent | d97583b17c8a6a0a8a19dca5bd4faa1b9a9314bc (diff) | |
download | cpython-0c4142570ac0029bd833d4d7a2f815b4e1a5432e.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 54d39a5a91..a642c0b0da 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -73,7 +73,6 @@ extern int _PyLong_Init(void); extern void PyLong_Fini(void); extern int _PyFaulthandler_Init(void); extern void _PyFaulthandler_Fini(void); -extern void _PyRandom_Init(void); #ifdef WITH_THREAD extern void _PyGILState_Init(PyInterpreterState *, PyThreadState *); |