summaryrefslogtreecommitdiff
path: root/Modules/zipimport.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #12124: zipimport doesn't keep a reference to zlib.decompress() anymoreVictor Stinner2011-05-211-24/+23
* #11565: Fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-161-1/+1
* #11515: fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-151-1/+1
* Fix #9316. if/is grammar corrections.Brian Curtin2010-07-211-3/+3
* Untabify C files. Will watch buildbots.Antoine Pitrou2010-05-091-860/+860
* Issue #4512 closeout: Make ZipImport.get_filename() a public methodNick Coghlan2009-02-081-3/+3
* Fix several issues relating to access to source code inside zipfiles. Initial...Nick Coghlan2008-12-141-0/+31
* This reverts r63675 based on the discussion in this thread:Gregory P. Smith2008-06-091-29/+29
* Renamed PyString to PyBytesChristian Heimes2008-05-261-29/+29
* #1326: document and test zipimporter.archive and zipimporter.prefix.Georg Brandl2008-05-111-2/+9
* Coverity issue CID #197Christian Heimes2008-01-181-0/+2
* Modified PyImport_Import and PyImport_ImportModule to always use absolute imp...Christian Heimes2008-01-031-1/+1
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFC...Christian Heimes2007-12-191-1/+1
* PEP 3123: Provide forward compatibility with Python 3.0, while keepingMartin v. Löwis2007-07-211-3/+2
* It's very unlikely, though possible that source is not a string. VerifyNeal Norwitz2006-08-131-0/+3
* Use Py_VISIT in all tp_traverse methods, instead of traversing manually orThomas Wouters2006-04-151-7/+1
* remove forward declarations. No constructors to move for these files. MakesAnthony Baxter2006-04-121-2/+1
* 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