Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython2
/
1aa4700234aa0657ee8cb12cfd9b615fef9e0300
/
Lib
/
zipfile.py
97377bf
Issue #5692: In :class:`zipfile.Zipfile`, fix wrong path calculation when extracting a file to the root directory.
by Antoine Pitrou
· 16 years ago
bf6c410
revert unrelated change
by Benjamin Peterson
· 16 years ago
6282169
remove py3k compat code
by Benjamin Peterson
· 16 years ago
0dfcfc8
Issue #4710: Extract directories properly in the zipfile module;
by Martin v. Löwis
· 16 years ago
2407ac9
follow-up of #3997: since 0xFFFF numbers are not enough to indicate a zip64 format,
by Amaury Forgeot d'Arc
· 16 years ago
d25f87a
#3997: zipfiles generated with more than 65536 files could not be opened
by Amaury Forgeot d'Arc
· 16 years ago
6f193e0
Issue #4756: zipfile.is_zipfile() now supports file-like objects.
by Antoine Pitrou
· 16 years ago
ebcd0ce
Issue #3535: zipfile couldn't read some zip files larger than 2GB.
by Antoine Pitrou
· 16 years ago
c534270
fix ZipFile.testzip() to work with very large embedded files
by Antoine Pitrou
· 16 years ago
5fdfa3e
#3394: zipfile.writestr doesn't set external attributes, so files are extracted mode 000 on Unix
by Antoine Pitrou
· 16 years ago
ae6d2b9
#3317 in zipfile module, restore the previous names of global variables:
by Amaury Forgeot d'Arc
· 16 years ago
8c43641
Patch #1622: Correct interpretation of various ZIP header fields.
by Martin v. Löwis
· 16 years ago
112aa50
Patch #1775025: allow opening zipfile members via ZipInfo instances.
by Georg Brandl
· 16 years ago
471617d
Issue #1734346: Support Unicode file names for zipfiles.
by Martin v. Löwis
· 17 years ago
bf02e3b
Fix the struct module DeprecationWarnings that zipfile was triggering by
by Gregory P. Smith
· 17 years ago
b89a096
Use zlib's crc32 routine instead of binascii when available. zlib's is faster
by Gregory P. Smith
· 17 years ago
da40723
Document that zipfile decryption is insanely slow and fix a typo and
by Gregory P. Smith
· 17 years ago
0c63fc2
Fix zipfile decryption. The check for validity only worked on one
by Gregory P. Smith
· 17 years ago
350d03b
Fixes/Accepts Patch for issue1189216 - Work properly with archives
by Gregory P. Smith
· 17 years ago
351e1a3
Fix 1698398: Zipfile.printdir() crashed because the format string expected a tuple object of length six instead of a time.struct_time object.
by Raymond Hettinger
· 17 years ago
62416bc
#467924, patch by Alan McIntyre: Add ZipFile.extract and ZipFile.extractall.
by Georg Brandl
· 17 years ago
4b3ab6f
Patch #1675424: Added tests for uncovered code in the zipfile module.
by Georg Brandl
· 17 years ago
ea5962f
Whitespace normalization.
by Tim Peters
· 18 years ago
3eb7648
Patch #1121142: Implement ZipFile.open.
by Martin v. Löwis
· 18 years ago
84f6de9
Patch #1517891: Make 'a' create the file if it doesn't exist. Fixes #1514451.
by Martin v. Löwis
· 18 years ago
c6d626e
Patch #698833: Support file decryption in zipfile.
by Martin v. Löwis
· 18 years ago
f79c32d
ZipFile.close(): Kill the other struct.pack deprecation warning on Windows.
by Tim Peters
· 18 years ago
352bf0d
ZipFile.close(): Killed one of the struct.pack deprecation warnings on Win32.
by Tim Peters
· 18 years ago
a608bb2
Whitespace normalization.
by Tim Peters
· 18 years ago
143cefb
Patch #1446489 (zipfile: support for ZIP64)
by Ronald Oussoren
· 18 years ago
8f7c54e
Bug #1413790: zipfile now sanitizes absolute archive names that are
by Georg Brandl
· 19 years ago
0075690
Patch #1412872: zipfile: use correct system type on unixy systems.
by Martin v. Löwis
· 19 years ago
2ca7c19
Remove dependency on order of mode flags
by Raymond Hettinger
· 20 years ago
8a92dd5
Don't choke on modes like rb or wb.
by Raymond Hettinger
· 20 years ago
ff450f7
Make struct formats for specifying file size to be unsigned instead of signed
by Brett Cannon
· 20 years ago
5543021
[Bug #835415] AIX can return modes that are >65536, which causes an OverflowError. Fix from Albert Chin
by Andrew M. Kuchling
· 20 years ago
c0fac96
SF patch #756996: Bare except in ZipFile.testzip()
by Raymond Hettinger
· 21 years ago
9b15878
Remove debug print on filename with NUL byte.
by Greg Ward
· 21 years ago
8e36d28
SF patch #755987 (Jim Ahlstrom):
by Greg Ward
· 21 years ago
0c6774d
Patch #661719: Expose compilation errors as exceptions on request.
by Martin v. Löwis
· 22 years ago
b083cb3
Patch #651621, approved by MvL.
by Just van Rossum
· 22 years ago
6f6873b
Patch #611760: read archives with comments.
by Martin v. Löwis
· 22 years ago
1ae4c3d
Avoid warnings about <<. external_attr is now an unsigned long.
by Guido van Rossum
· 22 years ago
65230a2
Remove uses of the string and types modules:
by Walter Dörwald
· 22 years ago
32200ae
Replaced obsolete stat module constants with equivalent attributes
by Raymond Hettinger
· 22 years ago
54f0222
SF 563203. Replaced 'has_key()' with 'in'.
by Raymond Hettinger
· 22 years ago
8ca162f
Partial introduction of bools where appropriate.
by Guido van Rossum
· 23 years ago
3caca23
SF bug #488514: -Qnew needs work
by Tim Peters
· 23 years ago
d15f8bb
SF bug 486480: zipfile __del__ is broken
by Tim Peters
· 23 years ago
dbb718f
Make these modules work when Python is compiled without Unicode support.
by Guido van Rossum
· 23 years ago
b64bec3
Whitespace normalization.
by Tim Peters
· 23 years ago
03a3bb8
[ #458701 ] Patch to zipfile.py for Java
by Finn Bock
· 23 years ago
a58947f
Make sure path names inserted into ZIP files are normalized to use "/" as
by Fred Drake
· 23 years ago
7e47380
Fix one bare except: clause.
by Fred Drake
· 23 years ago
f85af61
Mark Favas points out that there's an 'self.fp.flush()' call in the
by Guido van Rossum
· 24 years ago
9c673f3
Try an except: after an import into "except ImportError".
by Guido van Rossum
· 24 years ago
7d3bad6
Sf bug [ #412214 ] ZipFile constructor leaves files open.
by Tim Peters
· 24 years ago
a19a168
Whitespace normalization.
by Tim Peters
· 24 years ago
3d9091e
Itamar Shtull-Trauring <itamar@maxnm.com>:
by Fred Drake
· 24 years ago
40fc160
final round of __all__ lists (I hope) - skipped urllib2 because Moshe may be
by Skip Montanaro
· 24 years ago
3e038e5
Define lots of constants for indexes into the structures for the file
by Fred Drake
· 24 years ago
90eac28
Fix SF tracker bug #403871: AttributeError in ZipFile.__del__() when
by Fred Drake
· 24 years ago
e119006
Whitespace normalization. Top level of Lib now fixed-point for reindent.py!
by Tim Peters
· 24 years ago
484d735
Delay import of py_compile until needed, since is is only used by the
by Fred Drake
· 24 years ago
5db246d
Always use the same name for the exception defined in this module!
by Fred Drake
· 24 years ago
414ca66
James C. Ahlstron <jim@interet.com>:
by Fred Drake
· 24 years ago
32abe6f
Zip file handling module, by Jim Ahlstrom.
by Guido van Rossum
· 25 years ago