diff options
author | Facundo Batista <facundobatista@gmail.com> | 2008-02-23 12:46:10 (GMT) |
---|---|---|
committer | Facundo Batista <facundobatista@gmail.com> | 2008-02-23 12:46:10 (GMT) |
commit | b12f0b581a6f268d0611c87012d1273aeca220b8 (patch) | |
tree | 15cd0ffb90086c018c9542aa516b988aff18bde1 /Misc | |
parent | 1660933d23ed99393c2ea9bbe0204318936e3bbc (diff) | |
download | cpython-b12f0b581a6f268d0611c87012d1273aeca220b8.zip cpython-b12f0b581a6f268d0611c87012d1273aeca220b8.tar.gz cpython-b12f0b581a6f268d0611c87012d1273aeca220b8.tar.bz2 |
Issue 1781. Now ConfigParser.add_section does not let you add a
DEFAULT section any more, because it duplicated sections with
the rest of the machinery. Thanks Tim Lesher and Manuel Kaufmann.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -434,6 +434,9 @@ Core and builtins Library ------- +- Issue 1781: ConfigParser now does not let you add the "default" section + (ignore-case) + - Removed uses of dict.has_key() from distutils, and uses of callable() from copy_reg.py, so the interpreter now starts up without warnings when '-3' is given. More work like this needs to |