index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Lib
/
test
/
test_zipfile.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
properly close files in test_zipfile (#20887)
Benjamin Peterson
2014-04-03
1
-28/+46
*
Issue #20262: Warnings are raised now when duplicate names are added in the
Serhiy Storchaka
2014-01-20
1
-3/+6
*
Issue #17656: Skip test_extract_unicode_filenames if the FS encoding
Serhiy Storchaka
2013-05-08
1
-1/+9
*
Issue #17656: Fix extraction of zip files with unicode member paths.
Serhiy Storchaka
2013-04-13
1
-1/+20
*
Fix test for issue #6972.
Serhiy Storchaka
2013-02-02
1
-0/+1
*
Preserve backslashes in malicious zip files for testing issue #6972.
Serhiy Storchaka
2013-02-02
1
-1/+6
*
Fix the test and remove trailing dots on Windows for issue #6972.
Serhiy Storchaka
2013-02-02
1
-8/+14
*
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 #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
*
#14399: zipfile now correctly handles comments added to empty zipfiles.
R David Murray
2012-04-12
1
-0/+16
*
Fix closes Issue6090 - Raise a ValueError, instead of failing with unrelated
Senthil Kumaran
2011-10-19
1
-0/+10
*
#10694: zipfile now ignores garbage at the end of a zipfile.
R David Murray
2011-06-09
1
-0/+18
*
Fix #8886. Use context managers throughout zipfile tests.
Brian Curtin
2011-04-20
1
-112/+110
*
Fix typo: BadZipFile exists in 3.2+ only, not older versions.
Éric Araujo
2011-02-02
1
-1/+1
*
Merged revisions 85455 via svnmerge from
Georg Brandl
2010-11-26
1
-0/+25
*
Merged revisions 84737 via svnmerge from
Antoine Pitrou
2010-09-12
1
-0/+20
*
Merged revisions 83959-83960 via svnmerge from
Antoine Pitrou
2010-08-12
1
-0/+80
*
Issue 6003: ZipFile.writestr "compression_type" argument
Ronald Oussoren
2010-02-07
1
-0/+14
*
Issue #7610: Reworked implementation of the internal
Antoine Pitrou
2010-01-27
1
-0/+84
*
use assert[Not]IsInstance where appropriate
Ezio Melotti
2010-01-24
1
-1/+1
*
use assert[Not]In where appropriate
Ezio Melotti
2010-01-23
1
-21/+21
*
indentation and further alignment with py3k
Ezio Melotti
2009-12-31
1
-3/+3
*
cleanup and refactoring
Ezio Melotti
2009-12-31
1
-128/+123
*
#5511: Added the ability to use ZipFile as a context manager. Patch by Brian ...
Ezio Melotti
2009-12-30
1
-489/+452
*
#6026 - fix tests that failed without zlib
Ezio Melotti
2009-09-12
1
-0/+3
*
#6511: ZipFile will now raise BadZipfile when opening an empty or tiny file,
Amaury Forgeot d'Arc
2009-07-28
1
-0/+10
*
methods' names pep8ification
Ezio Melotti
2009-07-15
1
-127/+127
*
more cleanups and if zlib -> skipUnless(zlib)
Ezio Melotti
2009-07-10
1
-90/+94
*
if zlib -> skipUnless(zlib) and minor cleanups
Ezio Melotti
2009-07-04
1
-37/+49
*
convert usage of fail* to assert*
Benjamin Peterson
2009-06-30
1
-38/+38
*
Issue #6050: Don't fail extracting a directory from a zipfile if
Martin v. Löwis
2009-05-24
1
-0/+5
*
Issue #4710: Extract directories properly in the zipfile module;
Martin v. Löwis
2009-01-24
1
-1/+25
*
Issue #4756: zipfile.is_zipfile() now supports file-like objects.
Antoine Pitrou
2008-12-27
1
-5/+34
*
#3394: zipfile.writestr doesn't set external attributes, so files are extract...
Antoine Pitrou
2008-07-25
1
-0/+13
*
Patch #1622: Correct interpretation of various ZIP header fields.
Martin v. Löwis
2008-07-03
1
-0/+48
*
Patch #1775025: allow opening zipfile members via ZipInfo instances.
Georg Brandl
2008-05-20
1
-0/+19
*
Fix Unicode filename test.
Martin v. Löwis
2008-05-05
1
-4/+6
*
Issue #1734346: Support Unicode file names for zipfiles.
Martin v. Löwis
2008-05-05
1
-0/+9
*
Unit test fix from Giampaolo Rodola, #1938
Christian Heimes
2008-01-26
1
-0/+1
*
Fix zipfile decryption. The check for validity only worked on one
Gregory P. Smith
2008-01-20
1
-0/+21
*
#467924, patch by Alan McIntyre: Add ZipFile.extract and ZipFile.extractall.
Georg Brandl
2008-01-07
1
-0/+56
*
Patch #1675424: Added tests for uncovered code in the zipfile module.
Georg Brandl
2007-07-12
1
-4/+114
*
Remove direct call's to file's constructor and replace them with calls to
Brett Cannon
2007-05-25
1
-1/+1
*
Whitespace normalization. Ugh, we really need to do this more often.
Neal Norwitz
2007-04-25
1
-2/+2
*
Make test_zipfile clean up its temporary files properly.
Collin Winter
2007-03-29
1
-7/+12
*
Whitespace normalization.
Tim Peters
2007-03-12
1
-49/+49
*
Patch #1121142: Implement ZipFile.open.
Martin v. Löwis
2007-03-06
1
-10/+402
*
Patch #1517891: Make 'a' create the file if it doesn't exist.
Martin v. Löwis
2007-02-13
1
-0/+22
[next]