1. e90ec36 don't memoize objects that are their own copies (closes #12422) by Benjamin Peterson · 14 years ago
  2. 2353e35 Closes #12419: Added ident to SysLogHandler. by Vinay Sajip · 14 years ago
  3. 345a5d7 merge 3.2 by Benjamin Peterson · 14 years ago
  4. 0f93d3d strip trailing ws by Benjamin Peterson · 14 years ago
  5. 16ba98c merge heads by Benjamin Peterson · 14 years ago
  6. 68151d4 merge 3.2 (#12417) by Benjamin Peterson · 14 years ago
  7. 8d77069 update profile license (closes #12417) by Benjamin Peterson · 14 years ago
  8. 096dcb1 Issue 12139: add CCC command support to FTP_TLS class to revert the SSL connection back to clear-text. by Giampaolo Rodola' · 14 years ago
  9. 29e2c64 Issue #4608: urllib.request.urlopen does not return an iterable object by Raymond Hettinger · 14 years ago
  10. 038018a Issue #4608: urllib.request.urlopen does not return an iterable object by Raymond Hettinger · 14 years ago
  11. 9003760 map cells to arg slots at code creation time (closes #12399) by Benjamin Peterson · 14 years ago
  12. 7079719 Issue 11802: filecmp cache was growing without bound. by Raymond Hettinger · 14 years ago
  13. eceebeb Issue #12408: Fix relative import in test_future5.py. Thanks Cesare Di Mauro. by Mark Dickinson · 14 years ago
  14. d0de3d4 Issue 11802: filecmp cache was growing without bound. by Raymond Hettinger · 14 years ago
  15. 06eef9c Issue 11758: increase xml.dom.minidom test coverage (contributed by mdorn, reviewed by Sandro Tosi). by Raymond Hettinger · 14 years ago
  16. 7f48578 Fix test_signal on Windows after #12303. by Ross Lagerwall · 14 years ago
  17. 36a9de0 Issue #12408: Merge. by Mark Dickinson · 14 years ago
  18. bc80822 Issue #12303: Add sigwaitinfo() and sigtimedwait() to the signal module. by Ross Lagerwall · 14 years ago
  19. 12fb2f4 Code simplification suggested by Sven Marnach. by Raymond Hettinger · 14 years ago
  20. 5279fb9 Code simplification suggested by Sven Marnach. by Raymond Hettinger · 14 years ago
  21. e71db44 Issue #12392: fix thread initialization on FreeBSD 6 by Victor Stinner · 14 years ago
  22. fcb17e1 Merge #10206: add test for previously fixed bug. by R David Murray · 14 years ago
  23. e697e37 #10206: add test for previously fixed bug. by R David Murray · 14 years ago
  24. e109c70 give the names of missing positional or keyword-only arguments (closes #12356) by Benjamin Peterson · 14 years ago
  25. 66f7d66 Issue #11223: skip also test_rlock_acquire_interruption() on FreeBSD6 by Victor Stinner · 14 years ago
  26. f25ae48 Issue #11223: skip test_lock_acquire_interruption() on FreeBSD6 by Victor Stinner · 14 years ago
  27. 3a420c7 #10354: remove last public mentions of 'template' and comment as private. by R David Murray · 14 years ago
  28. 8153b7a (merge 3.2) Issue #12383: skip test_empty_env() of subprocess on Windows by Victor Stinner · 14 years ago
  29. 62d5118 Issue #12383: skip test_empty_env() of subprocess on Windows by Victor Stinner · 14 years ago
  30. 4527365 Issue #12363: improve siginterrupt() tests by Victor Stinner · 14 years ago
  31. c0a9f75 (merge 3.2) Issue #12383: fix test_empty_env() of subprocess on Mac OS X by Victor Stinner · 14 years ago
  32. 237e5cb Issue #12383: fix test_empty_env() of subprocess on Mac OS X by Victor Stinner · 14 years ago
  33. 749073a #1874: detect invalid multipart CTE and report it as a defect. by R David Murray · 14 years ago
  34. 11cc475 (merge 3.2) Issue #12383: skip test_empty_env() if compiled is compiled in by Victor Stinner · 14 years ago
  35. 372309a Issue #12383: skip test_empty_env() if compiled is compiled in shared mode by Victor Stinner · 14 years ago
  36. 372b838 (merge 3.2) Close #12383: Fix subprocess module with env={}: don't copy the by Victor Stinner · 14 years ago
  37. f1512a2 Close #12383: Fix subprocess module with env={}: don't copy the environment by Victor Stinner · 14 years ago
  38. d628496 Close #12363: fix a race condition in siginterrupt() tests by Victor Stinner · 14 years ago
  39. 395dc58 (merge 3.2) Issue #12285: multiprocessing.Pool() raises a ValueError if the by Victor Stinner · 14 years ago
  40. 2fae27b Issue #12285: multiprocessing.Pool() raises a ValueError if the number of by Victor Stinner · 14 years ago
  41. fb25ba9 Close #12289: Fix "is executable?" test in the CGI server by Victor Stinner · 14 years ago
  42. f5ff223 use a invalid name for the __class__ closure for super() (closes #12370) by Benjamin Peterson · 14 years ago
  43. 019d0f2 merge 3.2 by Benjamin Peterson · 14 years ago
  44. 206cd1c fix uglyNamingConvention by Benjamin Peterson · 14 years ago
  45. 3e425ac packaging: Add the project directory to sys.path to support local setup hooks. by Éric Araujo · 14 years ago
  46. 348c572 Fix typo by Éric Araujo · 14 years ago
  47. afc9a5e #6771: Move wrapper function into __init__ and eliminate wrapper module by R David Murray · 14 years ago
  48. e76ff40 merge #11584: make Header and make_header handle binary unknown-8bit input by R David Murray · 14 years ago
  49. e5e366c #11584: make Header and make_header handle binary unknown-8bit input by R David Murray · 14 years ago
  50. 7df0837 merge #11584: make decode_header handle Header objects correctly by R David Murray · 14 years ago
  51. 6bdb176 #11584: make decode_header handle Header objects correctly by R David Murray · 14 years ago
  52. 9535105 merge #11700: proxy object close methods can now be called multiple times by R David Murray · 14 years ago
  53. c88bce1 #11700: proxy object close methods can now be called multiple times by R David Murray · 14 years ago
  54. 3c8ca08 Make decorators used in packaging preserve docstrings by Éric Araujo · 14 years ago
  55. 980d344 Brange merge by Éric Araujo · 14 years ago
  56. 74d6813 Brange merge by Éric Araujo · 14 years ago
  57. 4c7d21e merge #11767: use context manager to close file in __getitem__ to prevent FD leak by R David Murray · 14 years ago
  58. 05ff990 #11767: use context manager to close file in __getitem__ to prevent FD leak by R David Murray · 14 years ago
  59. ed5d2f1 Minor tweaks to packaging tests. by Éric Araujo · 14 years ago
  60. c06f46f Packaging tests: don’t let an internal cache grow indefinitely. by Éric Araujo · 14 years ago
  61. e470995 (Merge 3.2) Issue #10883: test_urllib2net closes socket explicitly by Victor Stinner · 14 years ago
  62. eaca5c8 Issue #10883: test_urllib2net closes socket explicitly by Victor Stinner · 14 years ago
  63. f073dc2 (Merge 3.2) Issue #12133: fix a ResourceWarning in urllib.request by Victor Stinner · 14 years ago
  64. a4c45d7 Issue #12133: fix a ResourceWarning in urllib.request by Victor Stinner · 14 years ago
  65. 7239939 Issue #12333: run tests on the new module in a subprocess by Victor Stinner · 14 years ago
  66. 0f270b2 Issue #12333: close files before removing the directory by Victor Stinner · 14 years ago
  67. d2c7e3f Minor tweaks in packaging’s test_dist. by Éric Araujo · 14 years ago
  68. 3bcc017 (Merge 3.2) Issue #12310: finalize the old process after _run_after_forkers() by Victor Stinner · 14 years ago
  69. 0f83b15 Issue #12310: finalize the old process after _run_after_forkers() by Victor Stinner · 14 years ago
  70. ac6602b Issue #12333: restore the previous dir before removing the current directory by Victor Stinner · 14 years ago
  71. 3e85e54 Remove unused code in packaging.pypi.dist by Éric Araujo · 14 years ago
  72. 6f67765 Stop binding sys.path as default parameter value in packaging. by Éric Araujo · 14 years ago
  73. b6be20c Packaging: remove last mentions and uses of setup.py in the code. by Éric Araujo · 14 years ago
  74. 434812d Clean up packaging.tests.test_mixin2to3 by Éric Araujo · 14 years ago
  75. 4e97abc Issue #12167: Fix a reafleak in packaging.tests.PyPIServer constructor by Victor Stinner · 14 years ago
  76. a87d586 branch merge? by Brian Curtin · 14 years ago
  77. c9d6a50 branch merge by Brian Curtin · 14 years ago
  78. 3e86c99 Merge from 3.2 for Issue #12084. by Brian Curtin · 14 years ago
  79. d25aef5 Fix #12084. os.stat on Windows wasn't working properly with relative symlinks. by Brian Curtin · 14 years ago
  80. 415007e Issue #12316: Fix sigwait() test using threads by Victor Stinner · 14 years ago
  81. 8d233f2 Also specify encoding when reading setup.cfg (#12320) by Éric Araujo · 14 years ago
  82. 043f5ae Specify the encoding of the setup.cfg in one packaging test (#12320) by Éric Araujo · 14 years ago
  83. 3bbb722 allow __dir__ to return any sequence by Benjamin Peterson · 14 years ago
  84. 703f7c4 merge 3.2 (#9284) by Benjamin Peterson · 14 years ago
  85. 9620cc0 allow "fake" filenames in findsource (closes #9284) by Benjamin Peterson · 14 years ago
  86. bc18532 Branch merge by Éric Araujo · 14 years ago
  87. a529308 Issue #12287: In ossaudiodev, check that the device isn't closed in several by Charles-François Natali · 14 years ago
  88. 6280606 Adjust logging in packaging.util.spawn (related to #11599) by Éric Araujo · 14 years ago
  89. 643cb73 Allow multiple setup hooks in packaging’s setup.cfg files (#12240). by Éric Araujo · 14 years ago
  90. 8474f29 setup.cfg: Document that description-file can contain more than one file by Éric Araujo · 14 years ago
  91. 3605030 Fix assorted bugs in packaging.util.cfg_to_args (#11595). by Éric Araujo · 14 years ago
  92. 1c1d9a5 Move useful function to packaging.util. by Éric Araujo · 14 years ago
  93. 49aaad3 merge heads by Benjamin Peterson · 14 years ago
  94. ae10b32 merge 3.2 (#12009) by Benjamin Peterson · 14 years ago
  95. 9aa68e4 merge 3.1 (#12009) by Benjamin Peterson · 14 years ago
  96. df55334 Branch merge by Éric Araujo · 14 years ago
  97. 1df0f21 fix regression in netrc comment handling (closes #12009) by Benjamin Peterson · 14 years ago
  98. fa6cfbc Don’t try to install something when running from uninstalled source (#12246). by Éric Araujo · 14 years ago
  99. e6eafa2 Issue #10801: Fix test_unicode_filenames() of test_zipfile by Victor Stinner · 14 years ago
  100. 7f294d1 Issue #8407: skip sigwait() tests if pthread_sigmask() is missing by Victor Stinner · 14 years ago