From fbacb06c9d8a4cb4f6b2e0dca01312725e14657a Mon Sep 17 00:00:00 2001 From: "Andrew M. Kuchling" Date: Mon, 22 Feb 2010 16:52:52 +0000 Subject: 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 ........ --- Misc/NEWS | 3 +++ Modules/_cursesmodule.c | 2 -- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Misc/NEWS b/Misc/NEWS index 2db7bc1..e2b1415 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -247,6 +247,9 @@ C-API Library ------- +- Issue #7597: curses.use_env() can now be called before initscr(). + Noted by Kan-Ru Chen. + - Issue #7310: fix the __repr__ of os.environ to show the environment variables. - Issue #7970: email.Generator.flatten now correctly flattens message/rfc822 diff --git a/Modules/_cursesmodule.c b/Modules/_cursesmodule.c index da19216..ab17b0b 100644 --- a/Modules/_cursesmodule.c +++ b/Modules/_cursesmodule.c @@ -2659,8 +2659,6 @@ PyCurses_Use_Env(PyObject *self, PyObject *args) { int flag; - PyCursesInitialised - switch(PyTuple_Size(args)) { case 1: if (!PyArg_ParseTuple(args,"i;True(1), False(0)",&flag)) -- cgit v0.12