summaryrefslogtreecommitdiff
path: root/Python/pythonrun.c
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-02-21 19:08:26 +0100
committerAntoine Pitrou <solipsis@pitrou.net>2012-02-21 19:08:26 +0100
commit0c4142570ac0029bd833d4d7a2f815b4e1a5432e (patch)
treec183c1eaeedc19575c5cf130f7c90e1cd4568bfa /Python/pythonrun.c
parent40be1092f2069f128a0b84cb34c7efdba0bb7120 (diff)
parentd97583b17c8a6a0a8a19dca5bd4faa1b9a9314bc (diff)
downloadcpython-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.c1
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 *);