summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorJeffrey Rackauckas <jeffreyrack@gmail.com>2017-08-09 13:37:17 (GMT)
committerPaul Moore <p.f.moore@gmail.com>2017-08-09 13:37:17 (GMT)
commitb811d664defed085d16951088afb579fb649c58d (patch)
tree8d440084c8a7fc1b4cef670cb8c9b772b5a2236a /Misc
parent9b0d1d647e3d2ec9d299e5c9f49b02fbbb810a5a (diff)
downloadcpython-b811d664defed085d16951088afb579fb649c58d.zip
cpython-b811d664defed085d16951088afb579fb649c58d.tar.gz
cpython-b811d664defed085d16951088afb579fb649c58d.tar.bz2
bpo-31072: Add filter to zipapp (#3021)
bpo-31072: Add a filter argument to zipapp.create_archive (GH-3021) * Add an include_file argument to allow callers to decide which files to include * Document the new argument
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS.d/next/Library/2017-08-09-13-45-23.bpo-31072.NLXDPV.rst1
2 files changed, 2 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index e340392..d6088b3 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -1253,6 +1253,7 @@ Brian Quinlan
Anders Qvist
Thomas Rachel
Ram Rachum
+Jeffrey Rackauckas
Jérôme Radix
Burton Radons
Abhilash Raj
diff --git a/Misc/NEWS.d/next/Library/2017-08-09-13-45-23.bpo-31072.NLXDPV.rst b/Misc/NEWS.d/next/Library/2017-08-09-13-45-23.bpo-31072.NLXDPV.rst
new file mode 100644
index 0000000..8c96201
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2017-08-09-13-45-23.bpo-31072.NLXDPV.rst
@@ -0,0 +1 @@
+Add an ``include_file`` parameter to ``zipapp.create_archive()``