diff options
author | Raymond Hettinger <python@rcn.com> | 2009-04-14 08:05:31 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2009-04-14 08:05:31 (GMT) |
commit | 7f5d746cdfae71ead2a646a16259fa33e934a3f2 (patch) | |
tree | 60491b758d6f0aa6be6c80689063be590f5cbfa2 /Doc/whatsnew | |
parent | 3a794c4add0326a185c33ba91fcf51b341a82ad3 (diff) | |
download | cpython-7f5d746cdfae71ead2a646a16259fa33e934a3f2.zip cpython-7f5d746cdfae71ead2a646a16259fa33e934a3f2.tar.gz cpython-7f5d746cdfae71ead2a646a16259fa33e934a3f2.tar.bz2 |
New module names are lowercase
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.1.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.1.rst b/Doc/whatsnew/3.1.rst index f30968f..d25307b 100644 --- a/Doc/whatsnew/3.1.rst +++ b/Doc/whatsnew/3.1.rst @@ -67,7 +67,7 @@ the original insertion position is left unchanged. Deleting an entry and reinserting it will move it to the end. The standard library now supports use of ordered dictionaries in several -modules. The :mod:`ConfigParser` module uses them by default. This lets +modules. The :mod:`configparser` module uses them by default. This lets configuration files be read, modified, and then written back in their original order. The :mod:`collections` module's :meth:`namedtuple._asdict` method now returns an ordered dictionary with the values appearing in the same order as |