summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorsth <sth.dev@tejp.de>2018-05-23 05:07:01 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2018-05-23 05:07:01 (GMT)
commit825aab95fde959541859383f8ea7e7854ebfd49f (patch)
tree727aafb15e3d3054ccd279f732b715aae74f899d /Misc
parent0e61dffdbaf39ac5916ce431ff3b37db8faa1d2d (diff)
downloadcpython-825aab95fde959541859383f8ea7e7854ebfd49f.zip
cpython-825aab95fde959541859383f8ea7e7854ebfd49f.tar.gz
cpython-825aab95fde959541859383f8ea7e7854ebfd49f.tar.bz2
bpo-27300: Add the errors parameter to tempfile classes. (GH-6696)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2018-05-01-02-24-44.bpo-27300.LdIXvK.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-05-01-02-24-44.bpo-27300.LdIXvK.rst b/Misc/NEWS.d/next/Library/2018-05-01-02-24-44.bpo-27300.LdIXvK.rst
new file mode 100644
index 0000000..5edbc86
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2018-05-01-02-24-44.bpo-27300.LdIXvK.rst
@@ -0,0 +1,2 @@
+The file classes in *tempfile* now accept an *errors* parameter that
+complements the already existing *encoding*. Patch by Stephan Hohe.