summaryrefslogtreecommitdiffstats
path: root/Doc/library/zipapp.rst
Commit message (Collapse)AuthorAgeFilesLines
* bpo-34906: Doc: Fix typos (GH-9712)Stéphane Wirtel2018-10-051-1/+1
|
* Fix "Python" casing in a few places (GH-9001)Andrés Delfino2018-09-141-2/+2
|
* Improve highlighting of some code blocks. (GH-6401)Serhiy Storchaka2018-04-081-6/+6
|
* bpo-28247: Document Windows executable creation in zipapp (GH-6158)Cheryl Sabella2018-03-201-0/+169
|
* Add version{changed,added} markers and make minor style changes (GH-4273)Berker Peksag2017-11-041-0/+2
|
* bpo-31638: Add compression support to zipapp (GH-3819)Zhiming Wang2017-09-291-3/+14
| | | | 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/+8
| | | | | | | 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-1/+6
| | | | | | 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-4/+4
| | | Now general path-like objects are supported, not just pathlib.Path.
* Issue #19795: Mark up None as literal text.Serhiy Storchaka2016-10-191-1/+1
|
* Issue #22558: Add remaining doc links to source code for Python-coded modules.Terry Jan Reedy2016-06-111-4/+3
| | | | | Reformat header above separator line (added if missing) to a common format. Patch by Yoni Lavi.
* Issue #26638: Fix links to some CLI options and section headingsMartin Panter2016-04-161-1/+1
| | | | | | * Disable inappropriate links to Python interpreter options * Correct link to CLI section in zipapp * Make CLI section label in timeit less ambiguous
* #23657 Don't explicitly do an isinstance check for str in zipappPaul Moore2015-03-221-8/+9
| | | | | As a result, explicitly support pathlib.Path objects as arguments. Also added tests for the CLI interface.
* Strip trailing whitespaceBrett Cannon2015-03-131-7/+8
|
* Issue #23491: Implement PEP 441: Improving Python Zip Application SupportBrett Cannon2015-03-131-0/+257
Thanks to Paul Moore for the PEP and implementation.