From 86838b02f04a01445778584afb7acd0b05081335 Mon Sep 17 00:00:00 2001 From: Antoine Pitrou Date: Tue, 21 Feb 2012 19:03:47 +0100 Subject: Fix test failure in test_cmd_line by initializing the hash secret at the earliest point. --- Python/pythonrun.c | 1 - 1 file changed, 1 deletion(-) (limited to 'Python/pythonrun.c') 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 *); -- cgit v1.2.1