summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_zipapp.py
Commit message (Collapse)AuthorAgeFilesLines
* bpo-31072: Rename the new filter argument for zipapp.create_archive. (#3049)Paul Moore2017-08-261-5/+26
| | | | | | | bpo-31072: Rename the new filter argument for zipapp.create_archive (GH-3049) * Rename the new argument to "filter" * Improve tests for the new functionality * Add a "What's New" entry.
* bpo-31072: Add filter to zipapp (#3021)Jeffrey Rackauckas2017-08-091-0/+17
| | | | | | 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
* Issue #26778: Fixed "a/an/and" typos in code comment and documentation.Serhiy Storchaka2016-04-171-1/+1
|
* #23657 Don't explicitly do an isinstance check for str in zipappPaul Moore2015-03-221-0/+99
| | | | | As a result, explicitly support pathlib.Path objects as arguments. Also added tests for the CLI interface.
* Issue #23491: Implement PEP 441: Improving Python Zip Application SupportBrett Cannon2015-03-131-0/+250
Thanks to Paul Moore for the PEP and implementation.