summaryrefslogtreecommitdiffstats
path: root/Lib/zipapp.py
Commit message (Collapse)AuthorAgeFilesLines
* bpo-31638: Add compression support to zipapp (GH-3819)Zhiming Wang2017-09-291-3/+9
| | | | Add optional argument `compressed` to `zipapp.create_archive`, and add option `--compress` to the command line interface of `zipapp`.
* bpo-31072: Rename the new filter argument for zipapp.create_archive. (#3049)Paul Moore2017-08-261-4/+4
| | | | | | | 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-2/+4
| | | | | | 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
* bpo-29901: Improve support of path-like objects in zipapp. (#815)Serhiy Storchaka2017-03-251-7/+4
| | | Now general path-like objects are supported, not just pathlib.Path.
* Issue #26778: Fixed "a/an/and" typos in code comment and documentation.Serhiy Storchaka2016-04-171-3/+4
|
* #23657 Don't explicitly do an isinstance check for str in zipappPaul Moore2015-03-221-9/+30
| | | | | As a result, explicitly support pathlib.Path objects as arguments. Also added tests for the CLI interface.
* Add some periods to the ends of a couple commentsBrett Cannon2015-03-131-2/+2
|
* Issue #23491: Implement PEP 441: Improving Python Zip Application SupportBrett Cannon2015-03-131-0/+179
Thanks to Paul Moore for the PEP and implementation.