summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorƁukasz Langa <lukasz@langa.pl>2017-08-21 23:23:38 (GMT)
committerGitHub <noreply@github.com>2017-08-21 23:23:38 (GMT)
commitea57923e89aa4a1bde1d4fa1de7d6eacff603683 (patch)
tree37b30667661e561d648fd7c714a2e0b6032215b0 /Misc
parent44e6ad87340d50f48daf53b6a61138377d0d0d10 (diff)
downloadcpython-ea57923e89aa4a1bde1d4fa1de7d6eacff603683.zip
cpython-ea57923e89aa4a1bde1d4fa1de7d6eacff603683.tar.gz
cpython-ea57923e89aa4a1bde1d4fa1de7d6eacff603683.tar.bz2
bpo-23835: [docs] configparser converts defaults to strings (#3176)
Title says all.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS.d/next/Library/2017-08-21-16-06-19.bpo-23835.da_4Kz.rst4
2 files changed, 5 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 21fc6bb..e3e02eb 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -1578,6 +1578,7 @@ Jason Tishler
Christian Tismer
Jim Tittsler
Frank J. Tobin
+James Tocknell
Bennett Todd
R Lindsay Todd
Eugene Toder
diff --git a/Misc/NEWS.d/next/Library/2017-08-21-16-06-19.bpo-23835.da_4Kz.rst b/Misc/NEWS.d/next/Library/2017-08-21-16-06-19.bpo-23835.da_4Kz.rst
new file mode 100644
index 0000000..5e15ed9
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2017-08-21-16-06-19.bpo-23835.da_4Kz.rst
@@ -0,0 +1,4 @@
+configparser: reading defaults in the ``ConfigParser()`` constructor is now
+using ``read_dict()``, making its behavior consistent with the rest of the
+parser. Non-string keys and values in the defaults dictionary are now being
+implicitly converted to strings. Patch by James Tocknell.