[Python-checkins] r78321 - in python/branches/release26-maint: Misc/NEWS Modules/_cursesmodule.c

andrew.kuchling python-checkins at python.org
Mon Feb 22 17:35:18 CET 2010


Author: andrew.kuchling
Date: Mon Feb 22 17:35:18 2010
New Revision: 78321

Log:
Merged revisions 78318 via svnmerge from 
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r78318 | andrew.kuchling | 2010-02-22 11:26:47 -0500 (Mon, 22 Feb 2010) | 1 line
  
  #7597: curses.use_env() can be called before initscr().  Noted by Kan-Ru Chen
........


Modified:
   python/branches/release26-maint/   (props changed)
   python/branches/release26-maint/Misc/NEWS
   python/branches/release26-maint/Modules/_cursesmodule.c

Modified: python/branches/release26-maint/Misc/NEWS
==============================================================================
--- python/branches/release26-maint/Misc/NEWS	(original)
+++ python/branches/release26-maint/Misc/NEWS	Mon Feb 22 17:35:18 2010
@@ -66,6 +66,9 @@
 Library
 -------
 
+- Issue #7597: curses.use_env() can now be called before initscr().
+  Noted by Kan-Ru Chen.
+
 - Issue #7970: email.Generator.flatten now correctly flattens message/rfc822
   messages parsed by email.Parser.HeaderParser.
 

Modified: python/branches/release26-maint/Modules/_cursesmodule.c
==============================================================================
--- python/branches/release26-maint/Modules/_cursesmodule.c	(original)
+++ python/branches/release26-maint/Modules/_cursesmodule.c	Mon Feb 22 17:35:18 2010
@@ -2586,8 +2586,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