diff options
author | Georg Brandl <georg@python.org> | 2008-05-25 07:25:25 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-05-25 07:25:25 (GMT) |
commit | 392c6fc02d90f211dadc72448a07d9281260cb70 (patch) | |
tree | 8cc4d563ee077ef83612a67a02ce36f5c2397d37 /Misc | |
parent | 995ee9dab0a89b139e08a55fc64a60aaddc0d5c0 (diff) | |
download | cpython-392c6fc02d90f211dadc72448a07d9281260cb70.zip cpython-392c6fc02d90f211dadc72448a07d9281260cb70.tar.gz cpython-392c6fc02d90f211dadc72448a07d9281260cb70.tar.bz2 |
ConfigParser renaming reversal part 3: move module into place and adapt imports.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 7 | ||||
-rw-r--r-- | Misc/cheatsheet | 2 |
2 files changed, 3 insertions, 6 deletions
@@ -135,9 +135,6 @@ Library - The DEVICE, GL, gl, and cgen modules (which indirectly includes cgensupport) have been deprecated for removal in Python 3.0. -- The ConfigParser module has been renamed 'configparser'. The old - name is now deprecated. - - The CL, CL_old, and cl modules for IRIX have been deprecated for removal in Python 3.0. @@ -1904,13 +1901,13 @@ Library Extension Modules ----------------- -- Patch #1657: added select.epoll and select.kqueue +- Patch #1657: added select.epoll and select.kqueue. - Patch #1506171: added operator.methodcaller(). - Patch #1826: operator.attrgetter() now supports dotted attribute paths. -- Patch #1957: syslogmodule: Release GIL when calling syslog(3) +- Patch #1957: syslogmodule: Release GIL when calling syslog(3). - Bug #2112: mmap.error is now a subclass of EnvironmentError and not a direct EnvironmentError. diff --git a/Misc/cheatsheet b/Misc/cheatsheet index 15c4d00..cb0702a 100644 --- a/Misc/cheatsheet +++ b/Misc/cheatsheet @@ -1862,7 +1862,7 @@ codecs Lookup existing Unicode encodings and register new ones. colorsys Conversion functions between RGB and other color systems. commands Tools for executing UNIX commands . compileall Force "compilation" of all .py files in a directory. -configparser Configuration file parser (much like windows .ini files) +ConfigParser Configuration file parser (much like windows .ini files) copy Generic shallow and deep copying operations. copy_reg Helper to provide extensibility for pickle/cPickle. csv Read and write files with comma separated values. |