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
commit776af4002bb6edf6071f0b82f0354ed7b218695e (patch)
treedb9510e763e2476783eb331b9a6fb396995bc815 /Python/pythonrun.c
parent876e789f650a68b1fe05be7060794357cf13e3d3 (diff)
downloadcpython-git-776af4002bb6edf6071f0b82f0354ed7b218695e.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 a2663c7067..2f8318bc5f 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 *);