diff options
author | Łukasz Langa <lukasz@langa.pl> | 2010-11-20 16:16:24 (GMT) |
---|---|---|
committer | Łukasz Langa <lukasz@langa.pl> | 2010-11-20 16:16:24 (GMT) |
commit | 45ec42615725d2c854f3cc04d73fb72017138d54 (patch) | |
tree | 26d99f52cec943f61c6c449b742d3b9b13336ed0 | |
parent | c264c098d03fb48e42ca58cd9888f6e35fba7d1a (diff) | |
download | cpython-45ec42615725d2c854f3cc04d73fb72017138d54.zip cpython-45ec42615725d2c854f3cc04d73fb72017138d54.tar.gz cpython-45ec42615725d2c854f3cc04d73fb72017138d54.tar.bz2 |
acknowledge configparser evolution
-rw-r--r-- | Misc/NEWS | 23 |
1 files changed, 21 insertions, 2 deletions
@@ -21,12 +21,31 @@ Core and Builtins Library ------- +- Issue #1682942: configparser supports alternative option/value delimiters. + +- Issue #5412: configparser supports mapping protocol access. + +- Issue #9411: configparser supports specifying encoding for read operations. + +- Issue #9421: configparser's getint(), getfloat() and getboolean() methods + accept vars and default arguments just like get() does. + +- Issue #9452: configparser supports reading from strings and dictionaries. + +- configparser: accepted INI file structure is now customizable, including + comment prefixes, name of the DEFAULT section, empty lines in multiline + values, and indentation. + - Issue 10326: unittest.TestCase instances can be pickled. - Issue #9920: Skip tests for cmath.atan and cmath.atanh applied to complex zeros on systems where the log1p function fails to respect the sign of zero. This fixes a test failure on AIX. +- Issue #9920: Skip tests for cmath.atan and cmath.atanh applied to complex + zeros on systems where the log1p function fails to respect the sign of zero. + This fixes a test failure on AIX. + - Issue #9732: Addition of getattr_static to the inspect module. - Issue #10446: Module documentation generated by pydoc now links to a @@ -53,8 +72,8 @@ Tests - Do not fail test_socket when the IP address of the local hostname cannot be looked up. -- Issue #8886: Use context managers throughout test_zipfile. Patch by - Eric Carstensen. +- Issue #8886: Use context managers throughout test_zipfile. Patch by Eric + Carstensen. Build ----- |