| Commit message (Expand) | Author | Age | Files | Lines |
... | |
| * | Issue #19053: ZipExtFile.read1() with non-zero argument no more returns empty | Serhiy Storchaka | 2013-09-27 | 1 | -0/+39 |
|
|
* | | Issue #17944: test_zipfile now discoverable and uses subclassing to | Serhiy Storchaka | 2013-07-22 | 1 | -843/+561 |
|\ \
| |/ |
|
| * | Issue #17944: test_zipfile now discoverable and uses subclassing to | Serhiy Storchaka | 2013-07-22 | 1 | -849/+562 |
|
|
* | | Issue #17177: Stop using imp in zipfile | Brett Cannon | 2013-06-15 | 1 | -2/+2 |
|
|
* | | Move test_zipfile to unittest.main() | Brett Cannon | 2013-06-12 | 1 | -7/+1 |
|
|
* | | Refactor recently added bugfix into more testable code by using a | Gregory P. Smith | 2013-02-03 | 1 | -12/+29 |
|\ \
| |/ |
|
| * | Refactor recently added bugfix into more testable code by using a | Gregory P. Smith | 2013-02-03 | 1 | -12/+29 |
|
|
* | | Fix the test for issue #6972. | Serhiy Storchaka | 2013-02-02 | 1 | -5/+17 |
|\ \
| |/ |
|
| * | Fix the test for issue #6972. | Serhiy Storchaka | 2013-02-02 | 1 | -5/+17 |
| |\ |
|
| | * | Fix the test for issue #6972. | Serhiy Storchaka | 2013-02-02 | 1 | -5/+17 |
|
|
* | | | Fixes Issue #6972: The zipfile module no longer overwrites files outside of | Gregory P. Smith | 2013-02-01 | 1 | -9/+77 |
|\ \ \
| |/ / |
|
| * | | Fixes Issue #6972: The zipfile module no longer overwrites files outside of | Gregory P. Smith | 2013-02-01 | 1 | -9/+77 |
| |\ \
| | |/ |
|
| | * | Fixes Issue #6972: The zipfile module no longer overwrites files outside of | Gregory P. Smith | 2013-02-01 | 1 | -9/+77 |
|
|
* | | | Issue #4844: ZipFile now raises BadZipFile when opens a ZIP file with an | Serhiy Storchaka | 2013-01-31 | 1 | -0/+14 |
|\ \ \
| |/ / |
|
| * | | Issue #4844: ZipFile now raises BadZipFile when opens a ZIP file with an | Serhiy Storchaka | 2013-01-31 | 1 | -0/+14 |
| |\ \
| | |/ |
|
| | * | Issue #4844: ZipFile now raises BadZipFile when opens a ZIP file with an | Serhiy Storchaka | 2013-01-31 | 1 | -0/+14 |
|
|
* | | | Issue #12004: Fix an internal error in PyZipFile when writing an invalid | Serhiy Storchaka | 2013-01-29 | 1 | -1/+25 |
|\ \ \
| |/ / |
|
| * | | Issue #12004: Fix an internal error in PyZipFile when writing an invalid | Serhiy Storchaka | 2013-01-29 | 1 | -1/+25 |
| |\ \
| | |/ |
|
| | * | Issue #12004: Fix an internal error in PyZipFile when writing an invalid | Serhiy Storchaka | 2013-01-29 | 1 | -1/+24 |
|
|
* | | | Replace IOError with OSError (#16715) | Andrew Svetlov | 2012-12-25 | 1 | -4/+4 |
|/ / |
|
* | | Issue #16714: use 'raise' exceptions, don't 'throw'. | Andrew Svetlov | 2012-12-18 | 1 | -1/+1 |
|\ \
| |/ |
|
| * | Issue #16714: use 'raise' exceptions, don't 'throw'. | Andrew Svetlov | 2012-12-18 | 1 | -1/+1 |
|
|
| * | #14313: zipfile now raises NotImplementedError when the compression type is u... | Ezio Melotti | 2012-11-18 | 1 | -0/+11 |
|
|
* | | Issue #9239: add tests for modifying zipfile comments in append mode. | Antoine Pitrou | 2012-06-30 | 1 | -0/+18 |
|\ \
| |/ |
|
| * | Issue #9239: add tests for modifying zipfile comments in append mode. | Antoine Pitrou | 2012-06-30 | 1 | -0/+18 |
|
|
| * | #14399: zipfile now correctly handles comments added to empty zipfiles. | R David Murray | 2012-04-12 | 1 | -0/+22 |
|
|
* | | Issue #14366: Support lzma compression in zip files. | Martin v. Löwis | 2012-05-13 | 1 | -1/+124 |
|
|
* | | Check extract_version when opening a zipfile. | Martin v. Löwis | 2012-05-01 | 1 | -0/+10 |
|
|
* | | Detect unsupported compression types. | Martin v. Löwis | 2012-05-01 | 1 | -0/+11 |
|
|
* | | Issue #14371: Support bzip2 in zipfile module. | Martin v. Löwis | 2012-05-01 | 1 | -1/+125 |
|
|
* | | Merge #14399: zipfile now correctly handles comments added to empty zipfiles. | R David Murray | 2012-04-12 | 1 | -0/+22 |
|
|
* | | default - Fix closes Issue6090 - Raise a ValueError, instead of failing with ... | Senthil Kumaran | 2011-10-19 | 1 | -0/+16 |
|\ \
| |/ |
|
| * | 3.2 - Fix closes Issue6090 - Raise a ValueError, instead of failing with unre... | Senthil Kumaran | 2011-10-19 | 1 | -0/+11 |
|
|
* | | Merge #10694: zipfile now ignores garbage at the end of a zipfile. | R David Murray | 2011-06-09 | 1 | -0/+18 |
|\ \
| |/ |
|
| * | #10694: zipfile now ignores garbage at the end of a zipfile. | R David Murray | 2011-06-09 | 1 | -0/+18 |
|
|
| * | Skip test that requires zlib when zlib is not available. | Ezio Melotti | 2011-03-14 | 1 | -0/+1 |
|
|
* | | Refactor a few tests to use the new requires_zlib decorator. | Ezio Melotti | 2011-05-19 | 1 | -39/+32 |
|
|
* | | Skip test if zlib not present. Closes #11498. Patch by Natalia B. Bidart. | Eric V. Smith | 2011-03-14 | 1 | -0/+1 |
|/ |
|
* | #10801: do not actually extract, just open() the files in the test zipfile. | Georg Brandl | 2011-01-01 | 1 | -9/+4 |
|
|
* | #10801: In zipfile, support different encodings for the header and the filena... | Georg Brandl | 2011-01-01 | 1 | -0/+14 |
|
|
* | #4871: check that zipfile password is bytes, and give useful error message. | R. David Murray | 2010-12-21 | 1 | -0/+6 |
|
|
* | Add an "optimize" parameter to compile() to control the optimization level, a... | Georg Brandl | 2010-12-04 | 1 | -0/+16 |
|
|
* | zipfile: remove remaining ResourceWarnings | Łukasz Langa | 2010-11-23 | 1 | -11/+10 |
|
|
* | Fix #8886. Use context managers throughout the test. | Brian Curtin | 2010-11-18 | 1 | -105/+107 |
|
|
* | start banging on zipfile's file leakiness | Benjamin Peterson | 2010-10-31 | 1 | -9/+48 |
|
|
* | #7351: add more consistent exception name alias. | Georg Brandl | 2010-10-28 | 1 | -11/+11 |
|
|
* | #1710703: write zipfile structures also in the case of closing a new, but emp... | Georg Brandl | 2010-10-14 | 1 | -0/+25 |
|
|
* | Issue #9837: The read() method of ZipExtFile objects (as returned by | Antoine Pitrou | 2010-09-12 | 1 | -0/+20 |
|
|
* | Issue #7467: when a file from a ZIP archive, its CRC is checked and a | Antoine Pitrou | 2010-08-12 | 1 | -0/+79 |
|
|
* | PEP 3147 | Barry Warsaw | 2010-04-17 | 1 | -1/+8 |
|
|