diff options
author | sth <sth.dev@tejp.de> | 2018-05-23 05:07:01 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2018-05-23 05:07:01 (GMT) |
commit | 825aab95fde959541859383f8ea7e7854ebfd49f (patch) | |
tree | 727aafb15e3d3054ccd279f732b715aae74f899d /Misc | |
parent | 0e61dffdbaf39ac5916ce431ff3b37db8faa1d2d (diff) | |
download | cpython-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.rst | 2 |
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. |