summaryrefslogtreecommitdiffstats
path: root/Modules/zipimport.c
Commit message (Expand)AuthorAgeFilesLines
* MERGE: Closes #15897: zipimport.c doesn't check return value of fseek()Jesus Cea2012-10-031-7/+36
|\
| * Closes #15897: zipimport.c doesn't check return value of fseek()Jesus Cea2012-10-031-7/+36
* | Fixed two memory leaks in make_filename() in zipimport.c. The allocated buffe...Christian Heimes2012-09-101-2/+6
* | Closes #15737: Fix potential NULL dereference in zipimport.c.Stefan Krah2012-08-201-2/+2
* | capitialize enum membersBenjamin Peterson2012-05-251-17/+17
* | use PyDict_ContainsBenjamin Peterson2012-05-251-3/+3
* | return NULL on errorBenjamin Peterson2012-05-251-2/+3
* | actually return the resultBenjamin Peterson2012-05-251-1/+1
* | simplify and rewrite the zipimport part of 702009f3c0b1 a bitBenjamin Peterson2012-05-251-51/+41
* | plug ref leakBenjamin Peterson2012-05-251-0/+1
* | issue 14660: Implement PEP 420, namespace packages.Eric V. Smith2012-05-251-8/+140
* | Fix zipimport.c's read_directory() to use appropriate types for the valuesGregory P. Smith2012-01-301-4/+5
|\ \ | |/
| * Fix zip_import.c's read_directory() to use appropriate types for the valuesGregory P. Smith2012-01-301-4/+5
* | Issue #13645: pyc files now contain the size of the corresponding sourceAntoine Pitrou2012-01-131-1/+3
* | (Merge 3.2) Handle correctly _Py_fopen() error: don't replace the exceptionVictor Stinner2011-12-181-3/+5
|\ \ | |/
| * Handle correctly _Py_fopen() error: don't replace the exceptionVictor Stinner2011-12-181-3/+5
* | import.c now catchs _Py_stat() exceptionsVictor Stinner2011-12-181-2/+2
* | Drop unused variable.Martin v. Löwis2011-10-311-1/+0
* | Fix typo.Martin v. Löwis2011-10-311-3/+2
* | Replace Py_UCS4_ API with Unicode API.Martin v. Löwis2011-10-311-130/+90
* | Rename _Py_identifier to _Py_IDENTIFIER.Martin v. Löwis2011-10-141-1/+1
* | Fix a compiler warning in zipimportVictor Stinner2011-10-111-1/+1
* | Use identifier API for PyObject_GetAttrString.Martin v. Löwis2011-10-101-2/+3
* | Rename new macros to conform to naming rules (function macros have "Py" prefi...Georg Brandl2011-09-281-4/+4
* | Implement PEP 393.Martin v. Löwis2011-09-281-52/+89
* | zipimport: initialize fullpath to NULLVictor Stinner2011-05-261-1/+1
* | avoid a compiler warning. the compiler doesn't know that the staticGregory P. Smith2011-05-211-1/+1
* | (Merge 3.2) Issue #12124: zipimport doesn't keep a reference toVictor Stinner2011-05-191-24/+23
|\ \ | |/
| * (Merge 3.1) Issue #12124: zipimport doesn't keep a reference toVictor Stinner2011-05-191-24/+23
| |\
| | * Issue #12124: zipimport doesn't keep a reference to zlib.decompress() anymoreVictor Stinner2011-05-191-24/+23
* | | Issue #3080: zipimport has a full unicode suppportVictor Stinner2011-03-151-135/+168
|/ /
* | #11565: Merge with 3.1.Ezio Melotti2011-03-161-1/+1
|\ \ | |/
| * #11565: Fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-161-1/+1
* | #11515: Merge with 3.1.Ezio Melotti2011-03-151-1/+1
|\ \ | |/
| * #11515: fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-151-1/+1
| * Merged revisions 83009 via svnmerge fromBrian Curtin2010-07-211-3/+3
| * Recorded merge of revisions 81032 via svnmerge fromAntoine Pitrou2010-05-091-868/+868
| * Merged revisions 78875 via svnmerge fromVictor Stinner2010-03-211-6/+3
* | Issue #10955: zipimport uses ASCII at bootstrapVictor Stinner2011-01-221-1/+19
* | zipimport: remove arbitrary length limit from message formatsVictor Stinner2010-10-181-14/+9
* | zipimport: document archive encoding; fix indentationVictor Stinner2010-10-181-3/+4
* | Revert r85699 and r85701 (zipimport): fullname is a module name, not a pathVictor Stinner2010-10-181-42/+18
* | zipimport: fix "can't find module ..." error messageVictor Stinner2010-10-181-4/+16
* | zipimport: find_module(), is_package() and get_source() supports surrogatesVictor Stinner2010-10-181-16/+28
* | zipimport: pass path size to make_filename()Victor Stinner2010-10-181-5/+5
* | get_code_from_data() uses the filesystem encoding to encode the module path,Victor Stinner2010-10-181-8/+7
* | zipimport: read_directory() uses cp437 or utf-8 (in strict mode), depending onVictor Stinner2010-10-181-2/+9
* | zipimport: get_module_code() returns modpath as a Unicode objectVictor Stinner2010-10-181-12/+23
* | zipimporter_load_module() doesn't destroy mod on errorVictor Stinner2010-10-181-9/+9
* | zipimport: encode the prefix to the fileystem encodingVictor Stinner2010-10-181-8/+15