summaryrefslogtreecommitdiffstats
path: root/Python/pythonrun.c
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-02-21 19:42:48 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-02-21 19:42:48 (GMT)
commitcc3fa88a9c9c371a310673cfea3752a0beb25dac (patch)
treef0d922f2156b1b77d88f700becc0768508f8ef71 /Python/pythonrun.c
parenta1b2af8034e1da367778de18872f7a1cddcc524e (diff)
downloadcpython-cc3fa88a9c9c371a310673cfea3752a0beb25dac.zip
cpython-cc3fa88a9c9c371a310673cfea3752a0beb25dac.tar.gz
cpython-cc3fa88a9c9c371a310673cfea3752a0beb25dac.tar.bz2
Fix crash at startup with -W options.
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 8e1cd623..dcb2c0e 100644
--- a/Python/pythonrun.c
+++ b/Python/pythonrun.c
@@ -67,7 +67,6 @@ static void call_sys_exitfunc(void);
static void call_ll_exitfuncs(void);
extern void _PyUnicode_Init(void);
extern void _PyUnicode_Fini(void);
-extern void _PyRandom_Init(void);
#ifdef WITH_THREAD
extern void _PyGILState_Init(PyInterpreterState *, PyThreadState *);