From: Antoine Pitrou Date: Tue, 21 Feb 2012 18:08:26 +0000 (+0100) Subject: Fix test failure in test_cmd_line by initializing the hash secret at the earliest... X-Git-Tag: v3.3.0a1~108 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=528b54b2637ca2a0d96f1b597d50aa24f789e303;p=thirdparty%2FPython%2Fcpython.git Fix test failure in test_cmd_line by initializing the hash secret at the earliest point. --- 528b54b2637ca2a0d96f1b597d50aa24f789e303 diff --cc Python/pythonrun.c index 54d39a5a91f3,584a19b426b6..a642c0b0dafd --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@@ -71,9 -70,6 +71,8 @@@ extern int _PyUnicode_Init(void) extern void _PyUnicode_Fini(void); 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 *);