1. 5640bbb reject negative data_size by Benjamin Peterson · 10 years ago
  2. 64ea192 prevent buffer overflow in get_data (closes #26171) by Benjamin Peterson · 10 years ago
  3. e4309f7 fix refleak in error condition by Benjamin Peterson · 10 years ago
  4. 384e9cb finish backing out #19081 by Benjamin Peterson · 11 years ago
  5. e9aab0f backout #19081 to fix #20621 by Benjamin Peterson · 11 years ago
  6. aaef0e7 Remove inaccurate comment and a the related recently added by Gregory P. Smith · 12 years ago
  7. 027ab39 Issue #19081: Remove the zipimporter.files reference as the zip TOC by Gregory P. Smith · 12 years ago
  8. 7251fe1 fix zipimport ref leak by Benjamin Peterson · 12 years ago
  9. 6de7260 cleanup for the issue 19081 fix - pull the file open and close outside of the by Gregory P. Smith · 12 years ago
  10. ad3e725 Should fix the issue19081 fix on Windows. Don't let the previous by Gregory P. Smith · 12 years ago
  11. b48c5d5 Fixes issue19081: When a zipimport .zip file in sys.path being imported by Gregory P. Smith · 12 years ago
  12. e884be6 Closes #15897: zipimport.c doesn't check return value of fseek() by Jesus Cea · 13 years ago
  13. f58f1c3 Issue #12124: zipimport doesn't keep a reference to zlib.decompress() anymore by Victor Stinner · 14 years ago
  14. c2077b0 #11565: Fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 14 years ago
  15. 24b07bc #11515: fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 14 years ago
  16. 13b43e7 Fix #9316. if/is grammar corrections. by Brian Curtin · 15 years ago
  17. c83ea13 Untabify C files. Will watch buildbots. by Antoine Pitrou · 15 years ago
  18. 0194f5b Issue #4512 closeout: Make ZipImport.get_filename() a public method by Nick Coghlan · 17 years ago
  19. a205347 Fix several issues relating to access to source code inside zipfiles. Initial work by Alexander Belopolsky. See Misc/NEWS in this checkin for details. by Nick Coghlan · 17 years ago
  20. dd96db6 This reverts r63675 based on the discussion in this thread: by Gregory P. Smith · 17 years ago
  21. 593daf5 Renamed PyString to PyBytes by Christian Heimes · 17 years ago
  22. 6a57c08 #1326: document and test zipimporter.archive and zipimporter.prefix. by Georg Brandl · 17 years ago
  23. 62a8e95 Coverity issue CID #197 by Christian Heimes · 18 years ago
  24. 000a074 Modified PyImport_Import and PyImport_ImportModule to always use absolute imports by calling __import__ with an explicit level of 0 by Christian Heimes · 18 years ago
  25. e93237d #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. Macros for b/w compatibility are available. by Christian Heimes · 18 years ago
  26. 6819210 PEP 3123: Provide forward compatibility with Python 3.0, while keeping by Martin v. Löwis · 18 years ago
  27. ee7c8f9 It's very unlikely, though possible that source is not a string. Verify by Neal Norwitz · 19 years ago
  28. c6e5506 Use Py_VISIT in all tp_traverse methods, instead of traversing manually or by Thomas Wouters · 19 years ago
  29. d6495b5 remove forward declarations. No constructors to move for these files. Makes by Anthony Baxter · 19 years ago
  30. 4af5c8c SF #1444030: Fix several potential defects found by Coverity. by Hye-Shik Chang · 19 years ago
  31. e9b1949 Patch #1352711: make zipimport raise a complete IOError by Georg Brandl · 19 years ago
  32. ad0a462 Use Py_ssize_t for counts and sizes. by Martin v. Löwis · 19 years ago
  33. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 19 years ago
  34. b84b35f the implementation uses ZipImportError, not ZipImporterError... by Fredrik Lundh · 20 years ago
  35. d39d861 Fix icc warnings: strlen() returns size_t by Neal Norwitz · 20 years ago
  36. f5b7fd2 update busted comment by Fred Drake · 20 years ago
  37. ec97a28 Fix a bunch of imports to use code.h instead of compile.h. by Jeremy Hylton · 20 years ago
  38. 02c4287 Disallow keyword arguments for type constructors that don't use them. by Georg Brandl · 20 years ago
  39. 2c45c9a SF patch 1062495: Modules/zipimport.c does not compile on solaris by Raymond Hettinger · 21 years ago
  40. ee8f10f Patch #801349: 64-bit fix for AMD64 from Gwenole Beauchesne. by Just van Rossum · 22 years ago
  41. 354e3d9 Change the zipimport implementation to accept files containing by Thomas Heller · 22 years ago
  42. 032fffe Remove unused variable. by Jeremy Hylton · 22 years ago
  43. a94568a Patch #734231: Update RiscOS support. In particular, correct by Martin v. Löwis · 22 years ago
  44. 547eb42 tentative fix for #712322: modification time stamp checking failed by Just van Rossum · 22 years ago
  45. 29fd2ba Make private function and data static. by Neal Norwitz · 22 years ago
  46. f4ecc75 use proper constant instead of comment (noted by nnorwitz) by Just van Rossum · 22 years ago
  47. 0c0aad9 Fix 64-bit problem, ParseTuple("i") needs C ints; ("l") needs C longs. by Neal Norwitz · 22 years ago
  48. 5c1ba53 Use correct function name to PyArg_ParseTuple("is_package"). by Neal Norwitz · 22 years ago
  49. 9a3129c Fix for bug #661136 by Just van Rossum · 23 years ago
  50. d35c6db Ugh, zipimport is virtually broken in 2.3a1 :-( It worked by accident in by Just van Rossum · 23 years ago
  51. 3f0b542 removed unused get_short() function by Just van Rossum · 23 years ago
  52. f8b6de1 - added missing decref - whitespace normalization by Just van Rossum · 23 years ago
  53. 5eaeaf9 Added casts to forestall warnings with MetroWerks. by Jack Jansen · 23 years ago
  54. f271c27 Squashed compiler wng from MSVC6. by Tim Peters · 23 years ago
  55. 1ea93f2 Wouldn't compile on Windows; fixed. by Tim Peters · 23 years ago
  56. 52e14d6 PEP 302 + zipimport: by Just van Rossum · 23 years ago