summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_zipapp.py
Commit message (Collapse)AuthorAgeFilesLines
* bpo-40275: More lazy imports in test.support (GH-20131)Hai Shi2020-05-181-1/+1
| | | | | | | | | | | | | | | | | | | Make the the following imports lazy in test.support: * bz2 * gzip * lzma * resource * zlib The following test.support decorators now need to be called with parenthesis: * @support.requires_bz2 * @support.requires_gzip * @support.requires_lzma * @support.requires_zlib For example, "@requires_zlib" becomes "@requires_zlib()".
* bpo-32297: Few misspellings found in Python source code comments. (#4803)Mike2017-12-141-4/+4
| | | | | | | | * Fix multiple typos in code comments * Add spacing in comments (test_logging.py, test_math.py) * Fix spaces at the beginning of comments in test_logging.py
* bpo-31998: Fix test_zipapp in case the zlib module is not available. (#4358)Serhiy Storchaka2017-11-101-0/+2
|
* bpo-31638: Add compression support to zipapp (GH-3819)Zhiming Wang2017-09-291-0/+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-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.