1. 2ebc5ce bpo-30860: Consolidate stateful runtime globals. (#3397) by Eric Snow · 7 years ago
  2. 631fdee bpo-31291: Fixed an assertion failure in zipimport.zipimporter.get_data() (#3226) by Oren Milman · 7 years ago
  3. 02f3b7d bpo-31109: Convert zipimport to use Argument Clinic (GH-2990) by Yaron de Leeuw · 7 years ago
  4. 6cca5c8 bpo-30592: Fixed error messages for some builtins. (#1996) by Serhiy Storchaka · 7 years ago
  5. 55fe1ae bpo-30022: Get rid of using EnvironmentError and IOError (except test… (#1051) by Serhiy Storchaka · 7 years ago
  6. 0710d75 bpo-29770: remove outdated PYO related info (GH-590) by Xiang Zhang · 7 years ago
  7. 228b12e Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE wherever by Serhiy Storchaka · 8 years ago
  8. 44d9bea Issue #28152: Fix -Wunreachable-code warning on clang by Victor Stinner · 8 years ago
  9. 467ab19 Issue #28410: Added _PyErr_FormatFromCause() -- the helper for raising by Serhiy Storchaka · 8 years ago
  10. 4aa74c4 Issue #28131: Fix a regression in zipimport's compile_source() by Berker Peksag · 8 years ago
  11. 8dcc48e Issue #25758: Prevents zipimport from unnecessarily encoding a filename (patch by Eryk Sun) by Steve Dower · 8 years ago
  12. 0be894b Issue #27895: Spelling fixes (Contributed by Ville Skyttä). by Martin Panter · 8 years ago
  13. 57a01d3 Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF by Serhiy Storchaka · 8 years ago
  14. 4884271 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 8 years ago
  15. d5db573 Issue #19883: Fixed possible integer overflows in zipimport. by Serhiy Storchaka · 9 years ago
  16. d52513c merge 3.4 by Benjamin Peterson · 9 years ago
  17. b1db758 reject negative data_size by Benjamin Peterson · 9 years ago
  18. 47b8ba2 merge 3.4 (#26171) by Benjamin Peterson · 9 years ago
  19. c4032da prevent buffer overflow in get_data (closes #26171) by Benjamin Peterson · 9 years ago
  20. d4d7737 merge 3.4 by Benjamin Peterson · 9 years ago
  21. ef9cf083 fix refleak in error condition by Benjamin Peterson · 9 years ago
  22. 56aae8f Issue #17633: Improve support for namespace packages with zipimport. by Brett Cannon · 9 years ago
  23. 5a57ade Issue #20440: Massive replacing unsafe attribute setting code with special by Serhiy Storchaka · 9 years ago
  24. f299abd Issue #23731: Implement PEP 488. by Brett Cannon · 9 years ago
  25. fbd6f9e Issue #23696: Chain ZipImportError to the OSError by Victor Stinner · 9 years ago
  26. 5200f55 Issue #19428: Handle PyMarshal_Read*() errors in run_pyc_file() by Victor Stinner · 9 years ago
  27. e42ccd2 Issue #23694: Enhance _Py_fopen(), it now raises an exception on error by Victor Stinner · 9 years ago
  28. 1a1ff29 Issue #23446: Use PyMem_New instead of PyMem_Malloc to avoid possible integer by Serhiy Storchaka · 9 years ago
  29. 34c1540 merge backout for #20621 by Benjamin Peterson · 10 years ago
  30. 766e10c merge 3.3 by Benjamin Peterson · 11 years ago
  31. 21e7d4c fix zipimport ref leak by Benjamin Peterson · 11 years ago
  32. 2e385e2 Fixes issue #19081: When a zipimport .zip file in sys.path being imported from by Gregory P. Smith · 11 years ago
  33. 2bcbc14 Fixes Issue #19081: When a zipimport .zip file in sys.path being imported from by Gregory P. Smith · 11 years ago
  34. 651f9f7 Issue #19515: Remove duplicated identifiers in zipimport.c by Victor Stinner · 11 years ago
  35. af8b7e8 Issue #18408: Fix zipimport, handle PyUnicode_Substring() and get_subname() failures by Victor Stinner · 11 years ago
  36. 73660af Issue #19428: zipimport now handles errors when reading truncated or invalid by Victor Stinner · 11 years ago
  37. daf4555 Issue #18571: Implementation of the PEP 446: file descriptors and file handles by Victor Stinner · 11 years ago
  38. 83358c9 Grammatical mistake in a comment by Brett Cannon · 11 years ago
  39. 0e6b7b5 Issue #8745: Small speed up zipimport on Windows. Patch by Catalin Iacob. by Serhiy Storchaka · 11 years ago
  40. fb22f54 MERGE: Closes #15897: zipimport.c doesn't check return value of fseek() by Jesus Cea · 12 years ago
  41. 09bf7a7 Closes #15897: zipimport.c doesn't check return value of fseek() by Jesus Cea · 12 years ago
  42. 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
  43. 000fde9 Closes #15737: Fix potential NULL dereference in zipimport.c. by Stefan Krah · 12 years ago
  44. 46c214d capitialize enum members by Benjamin Peterson · 12 years ago
  45. 18eac4a use PyDict_Contains by Benjamin Peterson · 12 years ago
  46. a6a7a1a return NULL on error by Benjamin Peterson · 12 years ago
  47. 2d12e14 actually return the result by Benjamin Peterson · 12 years ago
  48. 5ed7bd7 simplify and rewrite the zipimport part of 702009f3c0b1 a bit by Benjamin Peterson · 12 years ago
  49. 209e04c plug ref leak by Benjamin Peterson · 12 years ago
  50. 984b11f issue 14660: Implement PEP 420, namespace packages. by Eric V. Smith · 12 years ago
  51. cc6abd5 Fix zipimport.c's read_directory() to use appropriate types for the values by Gregory P. Smith · 13 years ago
  52. ab32066 Fix zip_import.c's read_directory() to use appropriate types for the values by Gregory P. Smith · 13 years ago
  53. bd206e2 Handle correctly _Py_fopen() error: don't replace the exception by Victor Stinner · 13 years ago
  54. 5136ac0 Issue #13645: pyc files now contain the size of the corresponding source by Antoine Pitrou · 13 years ago
  55. 3573476 (Merge 3.2) Handle correctly _Py_fopen() error: don't replace the exception by Victor Stinner · 13 years ago
  56. bd0850b import.c now catchs _Py_stat() exceptions by Victor Stinner · 13 years ago
  57. 5156f2c Drop unused variable. by Martin v. Löwis · 13 years ago
  58. cfa6129 Fix typo. by Martin v. Löwis · 13 years ago
  59. a72e78b Replace Py_UCS4_ API with Unicode API. by Martin v. Löwis · 13 years ago
  60. bd928fe Rename _Py_identifier to _Py_IDENTIFIER. by Martin v. Löwis · 13 years ago
  61. 3f528f0 Fix a compiler warning in zipimport by Victor Stinner · 13 years ago
  62. 1ee1b6f Use identifier API for PyObject_GetAttrString. by Martin v. Löwis · 13 years ago
  63. 4cb0de2 Rename new macros to conform to naming rules (function macros have "Py" prefix, not "PY"). by Georg Brandl · 13 years ago
  64. d63a3b8 Implement PEP 393. by Martin v. Löwis · 13 years ago
  65. 9a2261a zipimport: initialize fullpath to NULL by Victor Stinner · 13 years ago
  66. 95c7c46 avoid a compiler warning. the compiler doesn't know that the static by Gregory P. Smith · 13 years ago
  67. 21809a6 (Merge 3.2) Issue #12124: zipimport doesn't keep a reference to by Victor Stinner · 13 years ago
  68. 4445ec8 (Merge 3.1) Issue #12124: zipimport doesn't keep a reference to by Victor Stinner · 13 years ago
  69. 4925cde Issue #12124: zipimport doesn't keep a reference to zlib.decompress() anymore by Victor Stinner · 13 years ago
  70. 3b3499b #11565: Merge with 3.1. by Ezio Melotti · 13 years ago
  71. 1392500 #11565: Fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 13 years ago
  72. 4969f70 #11515: Merge with 3.1. by Ezio Melotti · 13 years ago
  73. 42da663 #11515: fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 13 years ago
  74. f6b563a Issue #3080: zipimport has a full unicode suppport by Victor Stinner · 13 years ago
  75. 4ee65a9 Issue #10955: zipimport uses ASCII at bootstrap by Victor Stinner · 14 years ago
  76. 07298a1 zipimport: remove arbitrary length limit from message formats by Victor Stinner · 14 years ago
  77. 9e40fad zipimport: document archive encoding; fix indentation by Victor Stinner · 14 years ago
  78. 965a8a1 Revert r85699 and r85701 (zipimport): fullname is a module name, not a path by Victor Stinner · 14 years ago
  79. 8c8ed0a zipimport: fix "can't find module ..." error message by Victor Stinner · 14 years ago
  80. 0410656 zipimport: find_module(), is_package() and get_source() supports surrogates by Victor Stinner · 14 years ago
  81. 269aeb7 zipimport: pass path size to make_filename() by Victor Stinner · 14 years ago
  82. 2a94f4c get_code_from_data() uses the filesystem encoding to encode the module path, by Victor Stinner · 14 years ago
  83. d36c821 zipimport: read_directory() uses cp437 or utf-8 (in strict mode), depending on by Victor Stinner · 14 years ago
  84. 08654e1 zipimport: get_module_code() returns modpath as a Unicode object by Victor Stinner · 14 years ago
  85. 26fabe1 zipimporter_load_module() doesn't destroy mod on error by Victor Stinner · 14 years ago
  86. 72f767e zipimport: encode the prefix to the fileystem encoding by Victor Stinner · 14 years ago
  87. 353349c zipimport, get_module_code(): avoid useless _PyUnicode_AsString() by Victor Stinner · 14 years ago
  88. c342fca zipimport: fix indentation by Victor Stinner · 14 years ago
  89. 5a7913e zipimport: catch _PyUnicode_AsString() failure in get_code_from_data() by Victor Stinner · 14 years ago
  90. 028dd97 Issue #9425: zipimporter_repr() uses unicode by Victor Stinner · 14 years ago
  91. 60fe8d9 Issue #9425: get_data() uses an unicode path by Victor Stinner · 14 years ago
  92. 2460a43 Issue #9425: read_directory() is fully unicode compliant by Victor Stinner · 14 years ago
  93. 2b8dab7 Issue #9425: zipimporter_init() is fully unicode compliant by Victor Stinner · 14 years ago
  94. 823de00 Merged revisions 83009 via svnmerge from by Brian Curtin · 14 years ago
  95. 3283973 Fix #9316. if/is grammar corrections. by Brian Curtin · 14 years ago
  96. 7f14f0d Recorded merge of revisions 81032 via svnmerge from by Antoine Pitrou · 14 years ago
  97. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  98. 38c36f8 Merged revisions 78875 via svnmerge from by Victor Stinner · 14 years ago
  99. 3f1af5c Issue #6697: use %U format instead of _PyUnicode_AsString(), because by Victor Stinner · 14 years ago
  100. 7f8ed81 Fix a warning. by Georg Brandl · 15 years ago