- 44d9bea Issue #28152: Fix -Wunreachable-code warning on clang by Victor Stinner · 8 years ago
- 467ab19 Issue #28410: Added _PyErr_FormatFromCause() -- the helper for raising by Serhiy Storchaka · 8 years ago
- 4aa74c4 Issue #28131: Fix a regression in zipimport's compile_source() by Berker Peksag · 8 years ago
- 8dcc48e Issue #25758: Prevents zipimport from unnecessarily encoding a filename (patch by Eryk Sun) by Steve Dower · 8 years ago
- 0be894b Issue #27895: Spelling fixes (Contributed by Ville Skyttä). by Martin Panter · 8 years ago
- 57a01d3 Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF by Serhiy Storchaka · 9 years ago
- 4884271 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 9 years ago
- d5db573 Issue #19883: Fixed possible integer overflows in zipimport. by Serhiy Storchaka · 9 years ago
- d52513c merge 3.4 by Benjamin Peterson · 9 years ago
- b1db758 reject negative data_size by Benjamin Peterson · 9 years ago
- 47b8ba2 merge 3.4 (#26171) by Benjamin Peterson · 9 years ago
- c4032da prevent buffer overflow in get_data (closes #26171) by Benjamin Peterson · 9 years ago
- d4d7737 merge 3.4 by Benjamin Peterson · 9 years ago
- ef9cf083 fix refleak in error condition by Benjamin Peterson · 9 years ago
- 56aae8f Issue #17633: Improve support for namespace packages with zipimport. by Brett Cannon · 9 years ago
- 5a57ade Issue #20440: Massive replacing unsafe attribute setting code with special by Serhiy Storchaka · 9 years ago
- f299abd Issue #23731: Implement PEP 488. by Brett Cannon · 10 years ago
- fbd6f9e Issue #23696: Chain ZipImportError to the OSError by Victor Stinner · 10 years ago
- 5200f55 Issue #19428: Handle PyMarshal_Read*() errors in run_pyc_file() by Victor Stinner · 10 years ago
- e42ccd2 Issue #23694: Enhance _Py_fopen(), it now raises an exception on error by Victor Stinner · 10 years ago
- 1a1ff29 Issue #23446: Use PyMem_New instead of PyMem_Malloc to avoid possible integer by Serhiy Storchaka · 10 years ago
- 34c1540 merge backout for #20621 by Benjamin Peterson · 11 years ago
- 766e10c merge 3.3 by Benjamin Peterson · 11 years ago
- 21e7d4c fix zipimport ref leak by Benjamin Peterson · 11 years ago
- 2e385e2 Fixes issue #19081: When a zipimport .zip file in sys.path being imported from by Gregory P. Smith · 11 years ago
- 2bcbc14 Fixes Issue #19081: When a zipimport .zip file in sys.path being imported from by Gregory P. Smith · 11 years ago
- 651f9f7 Issue #19515: Remove duplicated identifiers in zipimport.c by Victor Stinner · 11 years ago
- af8b7e8 Issue #18408: Fix zipimport, handle PyUnicode_Substring() and get_subname() failures by Victor Stinner · 11 years ago
- 73660af Issue #19428: zipimport now handles errors when reading truncated or invalid by Victor Stinner · 11 years ago
- daf4555 Issue #18571: Implementation of the PEP 446: file descriptors and file handles by Victor Stinner · 11 years ago
- 83358c9 Grammatical mistake in a comment by Brett Cannon · 12 years ago
- 0e6b7b5 Issue #8745: Small speed up zipimport on Windows. Patch by Catalin Iacob. by Serhiy Storchaka · 12 years ago
- fb22f54 MERGE: Closes #15897: zipimport.c doesn't check return value of fseek() by Jesus Cea · 12 years ago
- 09bf7a7 Closes #15897: zipimport.c doesn't check return value of fseek() by Jesus Cea · 12 years ago
- 1b5c76a Fixed two memory leaks in make_filename() in zipimport.c. The allocated buffer wasn't cleaned up in two error cases. CID 486832 by Christian Heimes · 12 years ago
- 000fde9 Closes #15737: Fix potential NULL dereference in zipimport.c. by Stefan Krah · 12 years ago
- 46c214d capitialize enum members by Benjamin Peterson · 13 years ago
- 18eac4a use PyDict_Contains by Benjamin Peterson · 13 years ago
- a6a7a1a return NULL on error by Benjamin Peterson · 13 years ago
- 2d12e14 actually return the result by Benjamin Peterson · 13 years ago
- 5ed7bd7 simplify and rewrite the zipimport part of 702009f3c0b1 a bit by Benjamin Peterson · 13 years ago
- 209e04c plug ref leak by Benjamin Peterson · 13 years ago
- 984b11f issue 14660: Implement PEP 420, namespace packages. by Eric V. Smith · 13 years ago
- cc6abd5 Fix zipimport.c's read_directory() to use appropriate types for the values by Gregory P. Smith · 13 years ago
- ab32066 Fix zip_import.c's read_directory() to use appropriate types for the values by Gregory P. Smith · 13 years ago
- bd206e2 Handle correctly _Py_fopen() error: don't replace the exception by Victor Stinner · 13 years ago
- 5136ac0 Issue #13645: pyc files now contain the size of the corresponding source by Antoine Pitrou · 13 years ago
- 3573476 (Merge 3.2) Handle correctly _Py_fopen() error: don't replace the exception by Victor Stinner · 13 years ago
- bd0850b import.c now catchs _Py_stat() exceptions by Victor Stinner · 13 years ago
- 5156f2c Drop unused variable. by Martin v. Löwis · 13 years ago
- cfa6129 Fix typo. by Martin v. Löwis · 13 years ago
- a72e78b Replace Py_UCS4_ API with Unicode API. by Martin v. Löwis · 13 years ago
- bd928fe Rename _Py_identifier to _Py_IDENTIFIER. by Martin v. Löwis · 13 years ago
- 3f528f0 Fix a compiler warning in zipimport by Victor Stinner · 13 years ago
- 1ee1b6f Use identifier API for PyObject_GetAttrString. by Martin v. Löwis · 13 years ago
- 4cb0de2 Rename new macros to conform to naming rules (function macros have "Py" prefix, not "PY"). by Georg Brandl · 13 years ago
- d63a3b8 Implement PEP 393. by Martin v. Löwis · 13 years ago
- 9a2261a zipimport: initialize fullpath to NULL by Victor Stinner · 14 years ago
- 95c7c46 avoid a compiler warning. the compiler doesn't know that the static by Gregory P. Smith · 14 years ago
- 21809a6 (Merge 3.2) Issue #12124: zipimport doesn't keep a reference to by Victor Stinner · 14 years ago
- 4445ec8 (Merge 3.1) Issue #12124: zipimport doesn't keep a reference to by Victor Stinner · 14 years ago
- 4925cde Issue #12124: zipimport doesn't keep a reference to zlib.decompress() anymore by Victor Stinner · 14 years ago
- 3b3499b #11565: Merge with 3.1. by Ezio Melotti · 14 years ago
- 1392500 #11565: Fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 14 years ago
- 4969f70 #11515: Merge with 3.1. by Ezio Melotti · 14 years ago
- 42da663 #11515: fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 14 years ago
- f6b563a Issue #3080: zipimport has a full unicode suppport by Victor Stinner · 14 years ago
- 4ee65a9 Issue #10955: zipimport uses ASCII at bootstrap by Victor Stinner · 14 years ago
- 07298a1 zipimport: remove arbitrary length limit from message formats by Victor Stinner · 14 years ago
- 9e40fad zipimport: document archive encoding; fix indentation by Victor Stinner · 14 years ago
- 965a8a1 Revert r85699 and r85701 (zipimport): fullname is a module name, not a path by Victor Stinner · 14 years ago
- 8c8ed0a zipimport: fix "can't find module ..." error message by Victor Stinner · 14 years ago
- 0410656 zipimport: find_module(), is_package() and get_source() supports surrogates by Victor Stinner · 14 years ago
- 269aeb7 zipimport: pass path size to make_filename() by Victor Stinner · 14 years ago
- 2a94f4c get_code_from_data() uses the filesystem encoding to encode the module path, by Victor Stinner · 14 years ago
- d36c821 zipimport: read_directory() uses cp437 or utf-8 (in strict mode), depending on by Victor Stinner · 14 years ago
- 08654e1 zipimport: get_module_code() returns modpath as a Unicode object by Victor Stinner · 14 years ago
- 26fabe1 zipimporter_load_module() doesn't destroy mod on error by Victor Stinner · 14 years ago
- 72f767e zipimport: encode the prefix to the fileystem encoding by Victor Stinner · 14 years ago
- 353349c zipimport, get_module_code(): avoid useless _PyUnicode_AsString() by Victor Stinner · 14 years ago
- c342fca zipimport: fix indentation by Victor Stinner · 14 years ago
- 5a7913e zipimport: catch _PyUnicode_AsString() failure in get_code_from_data() by Victor Stinner · 14 years ago
- 028dd97 Issue #9425: zipimporter_repr() uses unicode by Victor Stinner · 14 years ago
- 60fe8d9 Issue #9425: get_data() uses an unicode path by Victor Stinner · 14 years ago
- 2460a43 Issue #9425: read_directory() is fully unicode compliant by Victor Stinner · 14 years ago
- 2b8dab7 Issue #9425: zipimporter_init() is fully unicode compliant by Victor Stinner · 14 years ago
- 823de00 Merged revisions 83009 via svnmerge from by Brian Curtin · 14 years ago
- 3283973 Fix #9316. if/is grammar corrections. by Brian Curtin · 14 years ago
- 7f14f0d Recorded merge of revisions 81032 via svnmerge from by Antoine Pitrou · 15 years ago
- f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 15 years ago
- 38c36f8 Merged revisions 78875 via svnmerge from by Victor Stinner · 15 years ago
- 3f1af5c Issue #6697: use %U format instead of _PyUnicode_AsString(), because by Victor Stinner · 15 years ago
- 7f8ed81 Fix a warning. by Georg Brandl · 16 years ago
- 9a1d6e3 Merged revisions 69425 via svnmerge from by Nick Coghlan · 16 years ago
- e94c679 Issue #1717: rename tp_compare to tp_reserved. I'll change the by Mark Dickinson · 16 years ago
- f088e5e Merged revisions 67750-67751 via svnmerge from by Nick Coghlan · 16 years ago
- 693fc46 Fixes release blocker issue #3492 and #3790. by Gregory P. Smith · 16 years ago
- 4cc0f24 Rename PyUnicode_AsString -> _PyUnicode_AsString and by Marc-André Lemburg · 16 years ago
- 1a21451 Implement PEP 3121: new module initialization and finalization API. by Martin v. Löwis · 17 years ago
- 9c4756e Renamed PyBytes to PyByteArray by Christian Heimes · 17 years ago