summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2011-06-19 00:21:09 (GMT)
committerR David Murray <rdmurray@bitdance.com>2011-06-19 00:21:09 (GMT)
commitafc9a5eaa144eb246e22a16a6539821859fc08f5 (patch)
treecaebfc5b3710eadb3e67da29b9e9a687c9b814a6 /Misc
parent50ae84e727b99c8000d2f6d03559dda90985a33d (diff)
downloadcpython-afc9a5eaa144eb246e22a16a6539821859fc08f5.zip
cpython-afc9a5eaa144eb246e22a16a6539821859fc08f5.tar.gz
cpython-afc9a5eaa144eb246e22a16a6539821859fc08f5.tar.bz2
#6771: Move wrapper function into __init__ and eliminate wrapper module
Andrew agreed in the issue that eliminating the module file made sense. Wrapper has only been exposed as a function, and so there is no (easy) way to access the wrapper module, which in any case only had the one function in it. Since __init__ already contains a couple wrapper functions, it seems to make sense to just move wrapper there instead of importing it from a single function module.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 991e88e..c05a32a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -193,6 +193,10 @@ Core and Builtins
Library
-------
+- Issue #6771: moved the curses.wrapper function from the single-function
+ wrapper module into __init__, eliminating the module. Since __init__ was
+ already importing the function to curses.wrapper, there is no API change.
+
- Issue #11584: email.header.decode_header no longer fails if the header
passed to it is a Header object, and Header/make_header no longer fail
if given binary unknown-8bit input.