summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGregory P. Smith <greg@krypto.org>2015-05-22 23:18:14 (GMT)
committerGregory P. Smith <greg@krypto.org>2015-05-22 23:18:14 (GMT)
commitad577b938b367da53ee19d6d5021b19e50b92873 (patch)
tree814a45237ffda590168ac368a0a4e20c40fa4d0e /Misc
parent4a7fe7e3975062a939a4e7242f2a12b172befd8a (diff)
downloadcpython-ad577b938b367da53ee19d6d5021b19e50b92873.zip
cpython-ad577b938b367da53ee19d6d5021b19e50b92873.tar.gz
cpython-ad577b938b367da53ee19d6d5021b19e50b92873.tar.bz2
Issue 24230: The tempfile module now accepts bytes for prefix, suffix and dir
parameters and returns bytes in such situations (matching the os module APIs).
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 3a282d0..918c6a4 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -61,6 +61,9 @@ Core and Builtins
Library
-------
+- Issue 24230: The tempfile module now accepts bytes for prefix, suffix and dir
+ parameters and returns bytes in such situations (matching the os module APIs).
+
- Issue 24244: Prevents termination when an invalid format string is
encountered on Windows in strftime.