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