summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVincent Michel <vxgmichel@gmail.com>2017-11-02 12:47:04 (GMT)
committerBerker Peksag <berker.peksag@gmail.com>2017-11-02 12:47:04 (GMT)
commite314853d57450b2b9523157eebd405289a795a0e (patch)
treec410df1fbf11b9ec522e915819c58f5f53cbd27a /Misc
parenta64ce973a3ad90e4f4a93c402e946c132f647a63 (diff)
downloadcpython-e314853d57450b2b9523157eebd405289a795a0e.zip
cpython-e314853d57450b2b9523157eebd405289a795a0e.tar.gz
cpython-e314853d57450b2b9523157eebd405289a795a0e.tar.bz2
bpo-31307: Make ConfigParser.read() accept bytes objects (GH-3420)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2017-09-07-12-50-28.bpo-31307.AVBiNY.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2017-09-07-12-50-28.bpo-31307.AVBiNY.rst b/Misc/NEWS.d/next/Library/2017-09-07-12-50-28.bpo-31307.AVBiNY.rst
new file mode 100644
index 0000000..7e649aa
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2017-09-07-12-50-28.bpo-31307.AVBiNY.rst
@@ -0,0 +1,2 @@
+Allow use of bytes objects for arguments to
+:meth:`configparser.ConfigParser.read`. Patch by Vincent Michel.