summaryrefslogtreecommitdiff
path: root/Python/pythonrun.c
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-02-21 20:42:48 +0100
committerAntoine Pitrou <solipsis@pitrou.net>2012-02-21 20:42:48 +0100
commitcc3fa88a9c9c371a310673cfea3752a0beb25dac (patch)
treef0d922f2156b1b77d88f700becc0768508f8ef71 /Python/pythonrun.c
parenta1b2af8034e1da367778de18872f7a1cddcc524e (diff)
downloadcpython-git-cc3fa88a9c9c371a310673cfea3752a0beb25dac.tar.gz
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 8e1cd6236c..dcb2c0ebcc 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 *);