summaryrefslogtreecommitdiffstats
path: root/Modules/zipimport.c
Commit message (Expand)AuthorAgeFilesLines
* Merged revisions 69425 via svnmerge fromNick Coghlan2009-02-081-3/+3
* Issue #1717: rename tp_compare to tp_reserved. I'll change theMark Dickinson2009-02-021-1/+1
* Merged revisions 67750-67751 via svnmerge fromNick Coghlan2008-12-141-0/+31
* Fixes release blocker issue #3492 and #3790.Gregory P. Smith2008-09-061-11/+11
* Rename PyUnicode_AsString -> _PyUnicode_AsString andMarc-André Lemburg2008-08-071-13/+13
* Implement PEP 3121: new module initialization and finalization API.Martin v. Löwis2008-06-111-10/+22
* Renamed PyBytes to PyByteArrayChristian Heimes2008-05-261-11/+11
* Merged revisions 63066-63076,63079,63081-63085,63087-63097,63099,63101-63104 ...Alexandre Vassalotti2008-05-161-2/+9
* Reverted (partially) patch r62667 to zipimport.c.Alexandre Vassalotti2008-05-071-2/+3
* Issue #1950: Fixed misusage of PyUnicode_AsString().Alexandre Vassalotti2008-05-031-8/+7
* Merged revisions 59985-60000,60002,60005-60007,60009-60042 via svnmerge fromChristian Heimes2008-01-181-0/+2
* Merged revisions 59666-59679 via svnmerge fromChristian Heimes2008-01-031-1/+1
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes2007-12-191-1/+1
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-021-2/+2
* Use unicode (and bytes as appropriate)Neal Norwitz2007-08-261-24/+27
* Fix refcount leak, courtesy Christian Heines.Guido van Rossum2007-08-171-2/+3
* Remove RISCOS supportSkip Montanaro2007-08-161-10/+0
* SF patch# 1766592 by Paul Colomiets.Guido van Rossum2007-08-031-11/+20
* Merged revisions 56467-56482 via svnmerge fromMartin v. Löwis2007-07-211-3/+2
* Use PyUnicode_FromFormat() directly inWalter Dörwald2007-06-051-8/+4
* Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirrorWalter Dörwald2007-05-181-1/+1
* Merge current trunk into p3yk. This includes the PyNumber_Index API change,Thomas Wouters2006-08-211-0/+3
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-9/+2
* SF #1444030: Fix several potential defects found by Coverity.Hye-Shik Chang2006-03-071-0/+2
* Patch #1352711: make zipimport raise a complete IOErrorGeorg Brandl2006-02-191-2/+1
* Use Py_ssize_t for counts and sizes.Martin v. Löwis2006-02-161-2/+2
* Merge ssize_t branch.Martin v. Löwis2006-02-151-2/+4
* the implementation uses ZipImportError, not ZipImporterError...Fredrik Lundh2006-01-151-1/+1
* Fix icc warnings: strlen() returns size_tNeal Norwitz2006-01-081-4/+5
* update busted commentFred Drake2005-11-111-1/+2
* Fix a bunch of imports to use code.h instead of compile.h.Jeremy Hylton2005-10-211-1/+0
* Disallow keyword arguments for type constructors that don't use them.Georg Brandl2005-08-261-0/+3
* SF patch 1062495: Modules/zipimport.c does not compile on solarisRaymond Hettinger2004-11-101-5/+5
* Patch #801349: 64-bit fix for AMD64 from Gwenole Beauchesne.Just van Rossum2003-09-071-1/+1
* Change the zipimport implementation to accept files containingThomas Heller2003-07-221-2/+7
* Remove unused variable.Jeremy Hylton2003-07-171-2/+1
* Patch #734231: Update RiscOS support. In particular, correctMartin v. Löwis2003-05-101-0/+10
* tentative fix for #712322: modification time stamp checking failedJust van Rossum2003-04-081-1/+1
* Make private function and data static.Neal Norwitz2003-03-231-2/+3
* use proper constant instead of comment (noted by nnorwitz)Just van Rossum2003-02-281-1/+1
* Fix 64-bit problem, ParseTuple("i") needs C ints; ("l") needs C longs.Neal Norwitz2003-02-181-1/+1
* Use correct function name to PyArg_ParseTuple("is_package").Neal Norwitz2003-02-171-5/+2
* Fix for bug #661136Just van Rossum2003-01-031-12/+14
* Ugh, zipimport is virtually broken in 2.3a1 :-( It worked by accident inJust van Rossum2003-01-021-1/+1
* removed unused get_short() functionJust van Rossum2002-12-311-14/+0
* - added missing decrefJust van Rossum2002-12-311-4/+5
* Added casts to forestall warnings with MetroWerks.Jack Jansen2002-12-301-4/+4
* Squashed compiler wng from MSVC6.Tim Peters2002-12-301-1/+1
* Wouldn't compile on Windows; fixed.Tim Peters2002-12-301-1/+1
* PEP 302 + zipimport:Just van Rossum2002-12-301-0/+1187