1. b6751dc Issue #10250: fix resource warnings in test_urllib2_localnet. Patch by Brian Brazil. by Antoine Pitrou · 14 years ago
  2. 8d2b51b Issue #10253: FileIO leaks a file descriptor when trying to open a file by Antoine Pitrou · 14 years ago
  3. daf83ac Issue #10157: Fixed refleaks in pythonrun.c. Patch by Stefan Krah. by Hirokazu Yamamoto · 14 years ago
  4. 6ce29fa Fix test_mailbox by supporting context manager protocol for get_file() returns. by Georg Brandl · 14 years ago
  5. 849e12b Fix resource warning in test_unicodedata. Patch by Brian Brazil. by Antoine Pitrou · 14 years ago
  6. a6e9502 Fix resource warning in test_file. Patch by Brian Brazil. by Antoine Pitrou · 14 years ago
  7. bfa3470 Issue #10246: uu.encode didn't close file objects explicitly when filenames by Antoine Pitrou · 14 years ago
  8. b046b80 Remove ResourceWarnings caused by files left open. by Vinay Sajip · 14 years ago
  9. cc2adbc #10198: fix duplicate header when writeframes() is called with an empty string. by Georg Brandl · 14 years ago
  10. dd42154 Issue 10221: Improve error message for dict.pop(). by Raymond Hettinger · 14 years ago
  11. 6b6dffd issue 10237 by Kristján Valur Jónsson · 14 years ago
  12. 028011f Silence ResourceWarnings in modulefinder by using file context managers. by Brett Cannon · 14 years ago
  13. 0110578 Add some missing entries related to the various ResourceWarning fixes I have committed. by Brett Cannon · 14 years ago
  14. c524692 Properly close a file in test_minidom. by Brett Cannon · 14 years ago
  15. 653238a Silence some ResourceWarning in test_mailbox by using file context managers. by Brett Cannon · 14 years ago
  16. d05f9ad Windows can't remove a file before it is closed by Antoine Pitrou · 14 years ago
  17. 0174368 Move test_linecache over to file context managers. by Brett Cannon · 14 years ago
  18. dff6985 Use a file context manager for test_ioctl. by Brett Cannon · 14 years ago
  19. 5a9e91b Silence ResourceWarning when testing that the file destructor closes the file. by Brett Cannon · 14 years ago
  20. e1eca4e Issue #10233: Close file objects in a timely manner in the tarfile module by Antoine Pitrou · 14 years ago
  21. 749afa9 Move test_imp over to file context managers. by Brett Cannon · 14 years ago
  22. 105df5d Move test_httpservers over to file context managers. by Brett Cannon · 14 years ago
  23. d2eca37 Clean up socket closing in test_ssl and test.ssl_servers by Antoine Pitrou · 14 years ago
  24. 77b7de6 Move test_httplib over to file context managers. by Brett Cannon · 14 years ago
  25. 7f462fc Fix file closing in test_http_cookiejar. by Brett Cannon · 14 years ago
  26. 918e2d4 Clean up socket closing in test_ftplib. by Brett Cannon · 14 years ago
  27. 384917a Properly close files used by test_email. by Brett Cannon · 14 years ago
  28. 06407b3 Properly close a temporary TextIOWrapper in 'email'. by Brett Cannon · 14 years ago
  29. c0eee31 Properly close files in test_dbm_dumb. by Brett Cannon · 14 years ago
  30. 5ede149 Properly close a test file in test_cprofile. by Brett Cannon · 14 years ago
  31. 2d562f8 have test_asyncore properly close files. by Brett Cannon · 14 years ago
  32. 1ab58df Have pkgutil properly close files. by Brett Cannon · 14 years ago
  33. 5c035c0 Have distutils.sysconfig close a file to remove ResourceWarnings coming up by Brett Cannon · 14 years ago
  34. e857b29 plug refleak by Benjamin Peterson · 14 years ago
  35. 54ad0be set literals and unions are our friends by Benjamin Peterson · 14 years ago
  36. 65c66ab make gdb skip expected by Benjamin Peterson · 14 years ago
  37. 9f5db07 Make file handing in setup.py more robust by using context managers to properly by Brett Cannon · 14 years ago
  38. 2b40efd Fix typo by Antoine Pitrou · 14 years ago
  39. c14efc4 Make a GC run before trying to clean up files left over by the latest test run. by Antoine Pitrou · 14 years ago
  40. 72f4842 Issue #9377: Use Unicode API for gethostname on Windows. by Martin v. Löwis · 14 years ago
  41. 83432ba Issue #7547: fix transient failures due to network glitches in test_timeout. by Antoine Pitrou · 14 years ago
  42. 3cdfb12 Issue 7061: Explained 'gon' by Alexander Belopolsky · 14 years ago
  43. 9f62d1c Fix issue 10214 by removing the out of date python-mode.el and replacing it with a README. Will backport to 3.1 and 2.7. by Barry Warsaw · 14 years ago
  44. aa87965 Actually restore the original asyncore socket map by making a copy of the dict by Antoine Pitrou · 14 years ago
  45. 31e08a4 Make check_warnings error messages more informative by Antoine Pitrou · 14 years ago
  46. a0d2f4d test___all__ ignores ResourceWarning as well by Antoine Pitrou · 14 years ago
  47. 5efe9d0 Fix ResourceWarning in Lib/test/threaded_import_hangers.py by Antoine Pitrou · 14 years ago
  48. 14d8fe7 test_tarfile: woops, remove +0.001 which was used to debug by Victor Stinner · 14 years ago
  49. 26bfb5a test_tarfile: dump mtime as hexadecimal on test_extractall failure by Victor Stinner · 14 years ago
  50. e033e06 Issue #10093: ResourceWarnings are now issued when files and sockets are by Antoine Pitrou · 14 years ago
  51. 9cbdd75 Add read support for all missing variants of the GNU sparse by Lars Gustäbel · 14 years ago
  52. 3122ce3 (?:...) is a non-capturing, but still grouping construct. by Georg Brandl · 14 years ago
  53. 5c66bca Fix markup error and update false positive entries from "make suspicious". by Georg Brandl · 14 years ago
  54. a17fd1f Port suspicious markup builder and patchlevel.py so that they can be used with Python 2 and 3 without conversion. by Georg Brandl · 14 years ago
  55. b98273f Re-add "debugger" label, it is used in pydoc-topics. by Georg Brandl · 14 years ago
  56. 3017689 send_bytes obviously needs bytes... by Georg Brandl · 14 years ago
  57. 2b15bd8 #10222: fix for overzealous AIX compiler. by Georg Brandl · 14 years ago
  58. a95e977 decrement offset when it points to a newline (#10186 followup) by Benjamin Peterson · 14 years ago
  59. 47ce965 What's New in Python 3.2: update Unicode section by Victor Stinner · 14 years ago
  60. 6f35eda Issue #10210: os.get_exec_path() ignores BytesWarning warnings by Victor Stinner · 14 years ago
  61. bfd7b26 #10209, test_pep277: disable test_normalize and test_listdir on darwin by Victor Stinner · 14 years ago
  62. fc6f5a4 test_pep277: disable filenames 11, 12, 13, 14 on darwin by Victor Stinner · 14 years ago
  63. 07e20ef Issue #5437: A preallocated MemoryError instance should not hold traceback by Antoine Pitrou · 14 years ago
  64. 1842d0c Fixed a typo in a comment. by Alexander Belopolsky · 14 years ago
  65. 7c3d709 Updated readme.txt about OpenSSL. by Hirokazu Yamamoto · 14 years ago
  66. 5be365f #10116: wrap transient_internet() around net access in test_urllib2net. by Georg Brandl · 14 years ago
  67. ae2d832 Fix typo from r85874 by Éric Araujo · 14 years ago
  68. 5bc1686 Review new Barrier docs. by Georg Brandl · 14 years ago
  69. 2fa4cc5 Support new Condition return value in the multiprocessing version. by Georg Brandl · 14 years ago
  70. 7362c4f test_pep277: add identifiers to filenames by Victor Stinner · 14 years ago
  71. 7dae81b test_pep277: format filename with ascii() on failure by Victor Stinner · 14 years ago
  72. 74ad754 test_pep277: format function argument with ascii() on failure by Victor Stinner · 14 years ago
  73. 3be0003 issue 8777 Add threading.Barrier by Kristján Valur Jónsson · 14 years ago
  74. 65ffae0 Condition.wait now returns bool. by Georg Brandl · 14 years ago
  75. b9a4391 #10218: return timeout status from Condition.wait, mirroring other primitives' behavior. by Georg Brandl · 14 years ago
  76. cbb9421 Fix bytes/str issues in get-remote-certificate.py. by Georg Brandl · 14 years ago
  77. 4d54088 #7351: add more consistent exception name alias. by Georg Brandl · 14 years ago
  78. b156a46 Issue #8852: Allow the socket module to build on OpenSolaris. by Antoine Pitrou · 14 years ago
  79. 71f8cc9 Add David. by Georg Brandl · 14 years ago
  80. ea5d17d In open(), only set the buffer size from st.st_blksize when it is greater by Antoine Pitrou · 14 years ago
  81. d72402e Recode modules from latin-1 to utf-8 by Antoine Pitrou · 14 years ago
  82. 6b03ee6 Issue #5027: The standard `xml` namespace is now understood by by Antoine Pitrou · 14 years ago
  83. c1a6836 Issue #10193: Simplified instrospection used by turtle module by Alexander Belopolsky · 14 years ago
  84. 7424dd3 #5975: add unix_dialect to csv module. by Georg Brandl · 14 years ago
  85. 347fe5c Encoding fix. by Georg Brandl · 14 years ago
  86. f0a0d14 Issue #7061: Dropped "for Tk" from turtle module title and moved its by Alexander Belopolsky · 14 years ago
  87. ad15872 Simplify PyUnicode_Encode/DecodeFSDefault on Windows/Mac OS X by Victor Stinner · 14 years ago
  88. 91b47c6 Fix import. by Georg Brandl · 14 years ago
  89. 599dbfc #10200: typo. by Georg Brandl · 14 years ago
  90. 70cd7bc #10200: typo. by Georg Brandl · 14 years ago
  91. 6a65c5d logging: Improved Formatter implementation. by Vinay Sajip · 14 years ago
  92. ba488d1 #7761: fix telnetlib.interact failures on Windows. by R. David Murray · 14 years ago
  93. 123015e faqwiz is removed. by Georg Brandl · 14 years ago
  94. f19ff1e Work a bit more on tkinter demos. by Georg Brandl · 14 years ago
  95. 1920890 Markup fix. by Georg Brandl · 14 years ago
  96. 856023a #3018: tkinter demo fixes for py3k. by Georg Brandl · 14 years ago
  97. 07e4f15 sys_update_path(): update sys.path even if argc==0 by Victor Stinner · 14 years ago
  98. d960fae update gitignore by Victor Stinner · 14 years ago
  99. 0256b2a Fix issue10192 - add urlencode to urllib.parse.__all__ by Senthil Kumaran · 14 years ago
  100. d0557bf logging: Formatter implementation tweak. by Vinay Sajip · 14 years ago