diff options
author | Łukasz Langa <lukasz@langa.pl> | 2010-12-17 21:56:32 (GMT) |
---|---|---|
committer | Łukasz Langa <lukasz@langa.pl> | 2010-12-17 21:56:32 (GMT) |
commit | 71b37a5d6d2112083c50946f52a84bee4f887cda (patch) | |
tree | 8e932ff3dee10dd535025ade9859bea180ef3cfb /Misc | |
parent | 0e74cacdffc51b47316269a280064f987eb74bb3 (diff) | |
download | cpython-71b37a5d6d2112083c50946f52a84bee4f887cda.zip cpython-71b37a5d6d2112083c50946f52a84bee4f887cda.tar.gz cpython-71b37a5d6d2112083c50946f52a84bee4f887cda.tar.bz2 |
100% test coverage, better mapping protocol compatibility, some minor bugfixes
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -293,6 +293,8 @@ Library - Issue #10467: Fix BytesIO.readinto() after seeking into a position after the end of the file. +- configparser: 100% test coverage. + - Issue #10499: configparser supports pluggable interpolation handlers. The default classic interpolation handler is called BasicInterpolation. Another interpolation handler added (ExtendedInterpolation) which supports the syntax @@ -314,7 +316,9 @@ Library - 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. +- Issue #9452: configparser supports reading from strings and dictionaries + (thanks to the mapping protocol API, the latter can be used to copy data + between parsers). - configparser: accepted INI file structure is now customizable, including comment prefixes, name of the DEFAULT section, empty lines in multiline |