[Python-checkins] r78318 - python/trunk/Modules/_cursesmodule.c

andrew.kuchling python-checkins at python.org
Mon Feb 22 17:26:47 CET 2010


Author: andrew.kuchling
Date: Mon Feb 22 17:26:47 2010
New Revision: 78318

Log:
#7597: curses.use_env() can be called before initscr().  Noted by Kan-Ru Chen

Modified:
   python/trunk/Modules/_cursesmodule.c

Modified: python/trunk/Modules/_cursesmodule.c
==============================================================================
--- python/trunk/Modules/_cursesmodule.c	(original)
+++ python/trunk/Modules/_cursesmodule.c	Mon Feb 22 17:26:47 2010
@@ -2590,8 +2590,6 @@
 {
   int flag;
 
-  PyCursesInitialised
-
   switch(PyTuple_Size(args)) {
   case 1:
     if (!PyArg_ParseTuple(args,"i;True(1), False(0)",&flag))


More information about the Python-checkins mailing list