summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Moore <p.f.moore@gmail.com>2015-03-23 21:40:43 (GMT)
committerPaul Moore <p.f.moore@gmail.com>2015-03-23 21:40:43 (GMT)
commit929a14a880c6b021346ed827d901b197d3afae44 (patch)
tree9068372680d6cd850e869e3ad0848f221f5405bf
parentd1f3a002c3752bf75e394bf05230798d7f87b624 (diff)
downloadcpython-929a14a880c6b021346ed827d901b197d3afae44.zip
cpython-929a14a880c6b021346ed827d901b197d3afae44.tar.gz
cpython-929a14a880c6b021346ed827d901b197d3afae44.tar.bz2
Misc/NEWS entries for zipapp changes
-rw-r--r--Misc/NEWS7
1 files changed, 7 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index f59297b..34508e9 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -23,6 +23,13 @@ Core and Builtins
Library
-------
+- Issue #23491: Added a zipapp module to support creating executable zip
+ file archives of Python code. Registered ".pyz" and ".pyzw" extensions
+ on Windows for these archives (PEP 441).
+
+- Issue #23657: Avoid explicit checks for str in zipapp, adding support
+ for pathlib.Path objects as arguments.
+
- Issue #23688: Added support of arbitrary bytes-like objects and avoided
unnecessary copying of memoryview in gzip.GzipFile.write().
Original patch by Wolfgang Maier.