1. 99d4623 deactivating one test under win32 for now by Tarek Ziade · 13 years ago
  2. cc243cc make sure the crawler can browse file-based indexes under win32 by Tarek Ziade · 13 years ago
  3. 76ad4f0 fixed the export symbols for the win32 linker by Tarek Ziade · 13 years ago
  4. 5edc31e skip the pypi upload doc test via https, if ssl is not available by Tarek Ziade · 13 years ago
  5. be20be1 use the same line terminator everywhere by Tarek Ziade · 13 years ago
  6. fb2473f Merge 3.2.1rc1 release changes to default. by Georg Brandl · 13 years ago
  7. 89cc452 Simplify example by Raymond Hettinger · 13 years ago
  8. f9ca76f Simplify example by Raymond Hettinger · 13 years ago
  9. 39e3528 Issue #12136: Added change to handle non-availability of the ssl module. by Vinay Sajip · 13 years ago
  10. d079367 Set up branch to be rc2 next. by Georg Brandl · 13 years ago
  11. 9c1928f Merge release branch after 3.2.1rc1. by Georg Brandl · 13 years ago
  12. 4bdd9f3 fixed the move api in packaging.install, and closing the handle left by mkstemp() in its test module by Tarek Ziade · 13 years ago
  13. 2db5674 we want to generate /-separated paths setup.cfg files even under win32 by Tarek Ziade · 13 years ago
  14. 95c7c46 avoid a compiler warning. the compiler doesn't know that the static by Gregory P. Smith · 13 years ago
  15. 9ba8761 Added SSL test for HTTPHandler. by Vinay Sajip · 13 years ago
  16. 91f0e34 fixed the way the cfg file markers values are split under win32 by Tarek Ziade · 13 years ago
  17. ec9b76d fixed the separator issues in packaging/resources+config by Tarek Ziade · 13 years ago
  18. 9444961 fixed a few mocking/cleanup issues in packaging test_util for win32 by Tarek Ziade · 13 years ago
  19. 9904b22 Close #12114: fix a potential deadlock in packaging.util._find_exe_version() by Victor Stinner · 13 years ago
  20. 32565b6 Added SSL capability to TestHTTPServer. by Vinay Sajip · 13 years ago
  21. bb00976 Fix another ResourceWarning in test_packaging. by Ezio Melotti · 13 years ago
  22. 2ed7521 merge 3.2 by Benjamin Peterson · 13 years ago
  23. 619323c merge 3.1 by Benjamin Peterson · 13 years ago
  24. 2340986 this should actually be an IOError by Benjamin Peterson · 13 years ago
  25. a5a16bf merge heads by Benjamin Peterson · 13 years ago
  26. 7f071e6 merge 3.2 by Benjamin Peterson · 13 years ago
  27. c7dd737 merge 3.1 by Benjamin Peterson · 13 years ago
  28. 249b508 add example for not using access by Benjamin Peterson · 13 years ago
  29. 2177ac9 Fix more ResourceWarnings in test_packaging moving the join() and server_close() in the stop method. by Ezio Melotti · 13 years ago
  30. 6071359 Issue #1746656: make if_nameindex(), if_indextoname() and if_nametoindex() by Charles-François Natali · 13 years ago
  31. e724665 #12072: merge with 3.2. by Ezio Melotti · 13 years ago
  32. da5b852 #12072: merge with 3.1. by Ezio Melotti · 13 years ago
  33. 261d855 #12072: add missing parenthesis in the doc. Patch by Sandro Tosi. by Ezio Melotti · 13 years ago
  34. 86c54f0 Fix several ResourceWarnings in test_packaging. by Ezio Melotti · 13 years ago
  35. ba8ef7a (Merge 3.2) test_pydoc: skip PydocServerTest if thread support is disabled by Victor Stinner · 13 years ago
  36. 62a68f2 test_pydoc: skip PydocServerTest if thread support is disabled by Victor Stinner · 13 years ago
  37. 4050c69 packaging.tests.test_command_install_data: restore correctly sysconfig._SCHEMES by Victor Stinner · 13 years ago
  38. e1e3b1297 fix packaging tests on Windows: use os.path.join() in glob patterns by Victor Stinner · 13 years ago
  39. 21809a6 (Merge 3.2) Issue #12124: zipimport doesn't keep a reference to by Victor Stinner · 13 years ago
  40. 4445ec8 (Merge 3.1) Issue #12124: zipimport doesn't keep a reference to by Victor Stinner · 13 years ago
  41. 4925cde Issue #12124: zipimport doesn't keep a reference to zlib.decompress() anymore by Victor Stinner · 13 years ago
  42. f966803 packaging: fix the constructor of FakePopen by Victor Stinner · 13 years ago
  43. 8914fed fix packaging.compiler.msvc9compiler: os.environ['path'] value is also a str by Victor Stinner · 13 years ago
  44. 9999185 fix packaging.compiler.msvc9compiler: os.environ values are str, not bytes by Victor Stinner · 13 years ago
  45. 9cf6d13 Issue #12112: fix the encoding of setup.py in the packaging module by Victor Stinner · 13 years ago
  46. 975077a Refactor a few tests to use the new requires_zlib decorator. by Ezio Melotti · 13 years ago
  47. cad648c Skip tests that require zlib in the packaging tests. Also add a requires_zlib decorator to test.support. by Ezio Melotti · 13 years ago
  48. ebbb14c Issue #12120, Issue #12119: tests were missing a sys.dont_write_bytecode check by Tarek Ziade · 13 years ago
  49. 2db2d3b removed unused method in packaging.create by Tarek Ziade · 13 years ago
  50. c336452 Issue #12112: packaging reads/writes metadata using UTF-8 by Victor Stinner · 13 years ago
  51. dd13dd4 Issue #12112: packaging reads and writes setup.cfg using UTF-8 by Victor Stinner · 13 years ago
  52. 4c9706b package: replace open(fn, 'w').close() by open(fn, 'wb').close() by Victor Stinner · 13 years ago
  53. 21a9c74 packaging: use with open() instead of try/finally: close by Victor Stinner · 13 years ago
  54. 0e3f3a7 fixed the path splitting by Tarek Ziade · 13 years ago
  55. fd88318 Issue #12115: skipping all tests that need threading under a threadless environment by Tarek Ziade · 13 years ago
  56. cfd365b Issue #10419, issue #6011: port 6ad356525381 fix from distutils to packaging by Victor Stinner · 13 years ago
  57. 35de5ac packaging: don't use locale encoding to compute MD5 checksums by Victor Stinner · 13 years ago
  58. cd0f7bf Issue #12113: make sure generated module is not reused on a second run by Tarek Ziade · 13 years ago
  59. 311a2d1 make sure split() is called before the encoding by Tarek Ziade · 13 years ago
  60. 3b1a22a Issue #12109 fixing typo in packaging's test_command_upload_docs by Tarek Ziade · 13 years ago
  61. 1231a4e initial import of the packaging package in the standard library by Tarek Ziade · 13 years ago
  62. 566f8a6 os.sendfile() test: fix "AttributeError: 'NoneType' object has no attribute 'Thread'" when running tests with --without-threads option. by Giampaolo Rodola' · 13 years ago
  63. 0d38f2e Skip test_smtpnet when ssl is not available by Antoine Pitrou · 13 years ago
  64. e0cb15a Null merge by Antoine Pitrou · 13 years ago
  65. f23f786 Fix section title by Antoine Pitrou · 13 years ago
  66. 7a616f2 Issue #12065: connect_ex() on an SSL socket now returns the original errno by Antoine Pitrou · 13 years ago
  67. b4410db Issue #12065: connect_ex() on an SSL socket now returns the original errno by Antoine Pitrou · 13 years ago
  68. cc9ca22 Also protect ehlo() and quit() with the transient_internet() context manager by Antoine Pitrou · 13 years ago
  69. e065020 Issue #8809: The SMTP_SSL constructor and SMTP.starttls() now support by Antoine Pitrou · 13 years ago
  70. ae8856f Ooops, add the missing file of the backport of commit 33543b4e0e5d from Python by Victor Stinner · 13 years ago
  71. ff1d2f4 Backport commit 33543b4e0e5d from Python 3.2: #10801: In zipfile, support by Victor Stinner · 13 years ago
  72. 5f3b1c4 (Merge 3.2) Issue #12096: Fix a race condition in by Victor Stinner · 13 years ago
  73. 3349bca Issue #12096: Fix a race condition in test_threading.test_waitfor(). Patch by Victor Stinner · 13 years ago
  74. 1cb08c3 Fixes #11088: IDLE crashes when using F5 to run a script on OSX with Tk 8.5 by Ronald Oussoren · 13 years ago
  75. 2b7ea91 Fix for issue 10154, merge from 3.2 by Ronald Oussoren · 13 years ago
  76. 5ee0567 Fixes #11088: IDLE crashes when using F5 to run a script on OSX with Tk 8.5 by Ronald Oussoren · 13 years ago
  77. 6edd8c1 (merge) Fix #10154 and #10090: locale normalizes the UTF-8 encoding to "UTF-8" instead of "UTF8" by Ronald Oussoren · 13 years ago
  78. 02a67ac Fix #10154 and #10090: locale normalizes the UTF-8 encoding to "UTF-8" instead of "UTF8" by Ronald Oussoren · 13 years ago
  79. bd3d5cf Skip some tests in the absence of multiprocessing. by Vinay Sajip · 13 years ago
  80. ce7c978 Skip some more tests in the absence of threading. by Vinay Sajip · 13 years ago
  81. 362ce37 (Merge 3.2) Issue #11614: Fix test_linecache, cjkencodings_test.py doesn't by Victor Stinner · 13 years ago
  82. e5720b9 (Merge 3.1) Issue #11614: Fix test_linecache, cjkencodings_test.py doesn't by Victor Stinner · 13 years ago
  83. e98f177 Issue #11614: Fix test_linecache, cjkencodings_test.py doesn't exist anymore by Victor Stinner · 13 years ago
  84. 82f4614 (Merge 3.2) Issue #11614: Fix importlib tests for the new __hello__ module by Victor Stinner · 13 years ago
  85. 45323a8 (Merge 3.1) Issue #11614: Fix importlib tests for the new __hello__ module by Victor Stinner · 13 years ago
  86. 272e243 Issue #11614: Fix importlib tests for the new __hello__ module by Victor Stinner · 13 years ago
  87. 651e1a2 (Merge 3.2) Issue #12057: Convert CJK encoding testcase BLOB into multiple text by Victor Stinner · 13 years ago
  88. b67cf16 (Merge 3.1) Issue #12057: Convert CJK encoding testcase BLOB into multiple text by Victor Stinner · 13 years ago
  89. 033a543 Issue #12057: Convert CJK encoding testcase BLOB into multiple text files by Victor Stinner · 13 years ago
  90. 118ed71 (Merge 3.2) Issue #11614: import __hello__ prints "Hello World!". Patch written by Victor Stinner · 13 years ago
  91. 9cd6626 (Merge 3.1) Issue #11614: import __hello__ prints "Hello World!". Patch written by Victor Stinner · 13 years ago
  92. c77b931 Issue #11614: import __hello__ prints "Hello World!". Patch written by Andreas by Victor Stinner · 13 years ago
  93. 4197231 Add 3.2.1 UUIDs by Martin v. Löwis · 13 years ago
  94. 3b1f2c3 issue #1746656: Fix for OS X. configure and #include changes so that the socket by Gregory P. Smith · 13 years ago
  95. 4d58fdb Null merge 3.2 (fix already applied: 4a82be47a948+5060a92a8597). by Victor Stinner · 13 years ago
  96. 83d8a99 Null merge 3.1 (fix already applied: 4a82be47a948+5060a92a8597). by Victor Stinner · 13 years ago
  97. d0e11ec Issue #10756: atexit normalizes the exception before displaying it. Patch by by Victor Stinner · 13 years ago
  98. 7614109 Added tag v3.2.1rc1 for changeset cfa9364997c7 by Georg Brandl · 13 years ago
  99. 5673e27 Bump to 3.2.1rc1. by Georg Brandl · 13 years ago
  100. 521143d Update pydoc topics and handle suspicious markup. by Georg Brandl · 13 years ago