1. 651f9f7 Issue #19515: Remove duplicated identifiers in zipimport.c by Victor Stinner · 11 years ago
  2. af8b7e8 Issue #18408: Fix zipimport, handle PyUnicode_Substring() and get_subname() failures by Victor Stinner · 11 years ago
  3. 73660af Issue #19428: zipimport now handles errors when reading truncated or invalid by Victor Stinner · 11 years ago
  4. daf4555 Issue #18571: Implementation of the PEP 446: file descriptors and file handles by Victor Stinner · 11 years ago
  5. 83358c9 Grammatical mistake in a comment by Brett Cannon · 11 years ago
  6. 0e6b7b5 Issue #8745: Small speed up zipimport on Windows. Patch by Catalin Iacob. by Serhiy Storchaka · 11 years ago
  7. fb22f54 MERGE: Closes #15897: zipimport.c doesn't check return value of fseek() by Jesus Cea · 12 years ago
  8. 09bf7a7 Closes #15897: zipimport.c doesn't check return value of fseek() by Jesus Cea · 12 years ago
  9. 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
  10. 000fde9 Closes #15737: Fix potential NULL dereference in zipimport.c. by Stefan Krah · 12 years ago
  11. 46c214d capitialize enum members by Benjamin Peterson · 12 years ago
  12. 18eac4a use PyDict_Contains by Benjamin Peterson · 12 years ago
  13. a6a7a1a return NULL on error by Benjamin Peterson · 12 years ago
  14. 2d12e14 actually return the result by Benjamin Peterson · 12 years ago
  15. 5ed7bd7 simplify and rewrite the zipimport part of 702009f3c0b1 a bit by Benjamin Peterson · 12 years ago
  16. 209e04c plug ref leak by Benjamin Peterson · 12 years ago
  17. 984b11f issue 14660: Implement PEP 420, namespace packages. by Eric V. Smith · 12 years ago
  18. cc6abd5 Fix zipimport.c's read_directory() to use appropriate types for the values by Gregory P. Smith · 12 years ago
  19. ab32066 Fix zip_import.c's read_directory() to use appropriate types for the values by Gregory P. Smith · 12 years ago
  20. bd206e2 Handle correctly _Py_fopen() error: don't replace the exception by Victor Stinner · 13 years ago
  21. 5136ac0 Issue #13645: pyc files now contain the size of the corresponding source by Antoine Pitrou · 12 years ago
  22. 3573476 (Merge 3.2) Handle correctly _Py_fopen() error: don't replace the exception by Victor Stinner · 13 years ago
  23. bd0850b import.c now catchs _Py_stat() exceptions by Victor Stinner · 13 years ago
  24. 5156f2c Drop unused variable. by Martin v. Löwis · 13 years ago
  25. cfa6129 Fix typo. by Martin v. Löwis · 13 years ago
  26. a72e78b Replace Py_UCS4_ API with Unicode API. by Martin v. Löwis · 13 years ago
  27. bd928fe Rename _Py_identifier to _Py_IDENTIFIER. by Martin v. Löwis · 13 years ago
  28. 3f528f0 Fix a compiler warning in zipimport by Victor Stinner · 13 years ago
  29. 1ee1b6f Use identifier API for PyObject_GetAttrString. by Martin v. Löwis · 13 years ago
  30. 4cb0de2 Rename new macros to conform to naming rules (function macros have "Py" prefix, not "PY"). by Georg Brandl · 13 years ago
  31. d63a3b8 Implement PEP 393. by Martin v. Löwis · 13 years ago
  32. 9a2261a zipimport: initialize fullpath to NULL by Victor Stinner · 13 years ago
  33. 95c7c46 avoid a compiler warning. the compiler doesn't know that the static by Gregory P. Smith · 13 years ago
  34. 21809a6 (Merge 3.2) Issue #12124: zipimport doesn't keep a reference to by Victor Stinner · 13 years ago
  35. 4445ec8 (Merge 3.1) Issue #12124: zipimport doesn't keep a reference to by Victor Stinner · 13 years ago
  36. 4925cde Issue #12124: zipimport doesn't keep a reference to zlib.decompress() anymore by Victor Stinner · 13 years ago
  37. 3b3499b #11565: Merge with 3.1. by Ezio Melotti · 13 years ago
  38. 1392500 #11565: Fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 13 years ago
  39. 4969f70 #11515: Merge with 3.1. by Ezio Melotti · 13 years ago
  40. 42da663 #11515: fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 13 years ago
  41. f6b563a Issue #3080: zipimport has a full unicode suppport by Victor Stinner · 13 years ago
  42. 4ee65a9 Issue #10955: zipimport uses ASCII at bootstrap by Victor Stinner · 13 years ago
  43. 07298a1 zipimport: remove arbitrary length limit from message formats by Victor Stinner · 14 years ago
  44. 9e40fad zipimport: document archive encoding; fix indentation by Victor Stinner · 14 years ago
  45. 965a8a1 Revert r85699 and r85701 (zipimport): fullname is a module name, not a path by Victor Stinner · 14 years ago
  46. 8c8ed0a zipimport: fix "can't find module ..." error message by Victor Stinner · 14 years ago
  47. 0410656 zipimport: find_module(), is_package() and get_source() supports surrogates by Victor Stinner · 14 years ago
  48. 269aeb7 zipimport: pass path size to make_filename() by Victor Stinner · 14 years ago
  49. 2a94f4c get_code_from_data() uses the filesystem encoding to encode the module path, by Victor Stinner · 14 years ago
  50. d36c821 zipimport: read_directory() uses cp437 or utf-8 (in strict mode), depending on by Victor Stinner · 14 years ago
  51. 08654e1 zipimport: get_module_code() returns modpath as a Unicode object by Victor Stinner · 14 years ago
  52. 26fabe1 zipimporter_load_module() doesn't destroy mod on error by Victor Stinner · 14 years ago
  53. 72f767e zipimport: encode the prefix to the fileystem encoding by Victor Stinner · 14 years ago
  54. 353349c zipimport, get_module_code(): avoid useless _PyUnicode_AsString() by Victor Stinner · 14 years ago
  55. c342fca zipimport: fix indentation by Victor Stinner · 14 years ago
  56. 5a7913e zipimport: catch _PyUnicode_AsString() failure in get_code_from_data() by Victor Stinner · 14 years ago
  57. 028dd97 Issue #9425: zipimporter_repr() uses unicode by Victor Stinner · 14 years ago
  58. 60fe8d9 Issue #9425: get_data() uses an unicode path by Victor Stinner · 14 years ago
  59. 2460a43 Issue #9425: read_directory() is fully unicode compliant by Victor Stinner · 14 years ago
  60. 2b8dab7 Issue #9425: zipimporter_init() is fully unicode compliant by Victor Stinner · 14 years ago
  61. 823de00 Merged revisions 83009 via svnmerge from by Brian Curtin · 14 years ago
  62. 3283973 Fix #9316. if/is grammar corrections. by Brian Curtin · 14 years ago
  63. 7f14f0d Recorded merge of revisions 81032 via svnmerge from by Antoine Pitrou · 14 years ago
  64. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  65. 38c36f8 Merged revisions 78875 via svnmerge from by Victor Stinner · 14 years ago
  66. 3f1af5c Issue #6697: use %U format instead of _PyUnicode_AsString(), because by Victor Stinner · 14 years ago
  67. 7f8ed81 Fix a warning. by Georg Brandl · 15 years ago
  68. 9a1d6e3 Merged revisions 69425 via svnmerge from by Nick Coghlan · 15 years ago
  69. e94c679 Issue #1717: rename tp_compare to tp_reserved. I'll change the by Mark Dickinson · 15 years ago
  70. f088e5e Merged revisions 67750-67751 via svnmerge from by Nick Coghlan · 16 years ago
  71. 693fc46 Fixes release blocker issue #3492 and #3790. by Gregory P. Smith · 16 years ago
  72. 4cc0f24 Rename PyUnicode_AsString -> _PyUnicode_AsString and by Marc-André Lemburg · 16 years ago
  73. 1a21451 Implement PEP 3121: new module initialization and finalization API. by Martin v. Löwis · 16 years ago
  74. 9c4756e Renamed PyBytes to PyByteArray by Christian Heimes · 16 years ago
  75. 8ae3e05 Merged revisions 63066-63076,63079,63081-63085,63087-63097,63099,63101-63104 via svnmerge from by Alexandre Vassalotti · 16 years ago
  76. ec924c9 Reverted (partially) patch r62667 to zipimport.c. by Alexandre Vassalotti · 16 years ago
  77. a85998a Issue #1950: Fixed misusage of PyUnicode_AsString(). by Alexandre Vassalotti · 16 years ago
  78. 679db4a Merged revisions 59985-60000,60002,60005-60007,60009-60042 via svnmerge from by Christian Heimes · 16 years ago
  79. 072c0f1 Merged revisions 59666-59679 via svnmerge from by Christian Heimes · 17 years ago
  80. 90aa764 #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. by Christian Heimes · 17 years ago
  81. 217cfd1 Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h by Christian Heimes · 17 years ago
  82. 3c814d2 Use unicode (and bytes as appropriate) by Neal Norwitz · 17 years ago
  83. 76f2b24 Fix refcount leak, courtesy Christian Heines. by Guido van Rossum · 17 years ago
  84. 7a98be2 Remove RISCOS support by Skip Montanaro · 17 years ago
  85. ad8d300 SF patch# 1766592 by Paul Colomiets. Fix test_zipimport. by Guido van Rossum · 17 years ago
  86. 9f2e346 Merged revisions 56467-56482 via svnmerge from by Martin v. Löwis · 17 years ago
  87. 5b0443c Use PyUnicode_FromFormat() directly in zipimporter_repr(). by Walter Dörwald · 17 years ago
  88. 1ab8330 Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror by Walter Dörwald · 17 years ago
  89. 00ee7ba Merge current trunk into p3yk. This includes the PyNumber_Index API change, by Thomas Wouters · 18 years ago
  90. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  91. 4af5c8c SF #1444030: Fix several potential defects found by Coverity. by Hye-Shik Chang · 18 years ago
  92. e9b1949 Patch #1352711: make zipimport raise a complete IOError by Georg Brandl · 18 years ago
  93. ad0a462 Use Py_ssize_t for counts and sizes. by Martin v. Löwis · 18 years ago
  94. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 18 years ago
  95. b84b35f the implementation uses ZipImportError, not ZipImporterError... by Fredrik Lundh · 18 years ago
  96. d39d861 Fix icc warnings: strlen() returns size_t by Neal Norwitz · 19 years ago
  97. f5b7fd2 update busted comment by Fred Drake · 19 years ago
  98. ec97a28 Fix a bunch of imports to use code.h instead of compile.h. by Jeremy Hylton · 19 years ago
  99. 02c4287 Disallow keyword arguments for type constructors that don't use them. by Georg Brandl · 19 years ago
  100. 2c45c9a SF patch 1062495: Modules/zipimport.c does not compile on solaris by Raymond Hettinger · 20 years ago