1. 5d1155c Closes #13258: Use callable() built-in in the standard library. by Florent Xicluna · 13 years ago
  2. f50ffa9 #13273: fix a bug that prevented HTMLParser to properly detect some tags when strict=False. by Ezio Melotti · 13 years ago
  3. e119c40 Issue #10860: Skip the new test if HTTPS is not available by Petri Lehtinen · 13 years ago
  4. f8859e1 Issue #10332: multiprocessing: fix a race condition when a Pool is closed by Charles-François Natali · 13 years ago
  5. de31b19 Issue 1294232: Fix errors in metaclass calculation affecting some cases of metaclass inheritance. Patch by Daniel Urban. by Nick Coghlan · 13 years ago
  6. 711f87c Issue #9168: now smtpd is able to bind privileged port. by Florent Xicluna · 13 years ago
  7. 34d38dc urllib.request - syntax changes enhancing readability. By Éric Araujo by Senthil Kumaran · 13 years ago
  8. 29fa9d4 3.2 - Fix closes Issue6090 - Raise a ValueError, instead of failing with unrelated by Senthil Kumaran · 13 years ago
  9. 1ef0c03 3.2 - Fix closes Issue12529 - cgi.parse_header failure on double quotes and by Senthil Kumaran · 13 years ago
  10. e130a52 Remove duplication. by Ezio Melotti · 13 years ago
  11. a5a9a9c Fixes #10860: Handle empty port after port delimiter in httplib by Łukasz Langa · 13 years ago
  12. 551ba20 Issue #13188: When called without an explicit traceback argument, by Antoine Pitrou · 13 years ago
  13. 6bfecd1 #12448: smtplib now flushes stdout while running ``python -m smtplib`` by Ezio Melotti · 13 years ago
  14. 53e4a9a normalize whitespace in Lib/distutils/msvc9compiler.py by Mark Hammond · 13 years ago
  15. 6c58b28 Issue #7833: Ext. modules built using distutils on Windows no longer get a manifest by Mark Hammond · 13 years ago
  16. 4b779b3 Issue 13177: Make tracebacks more readable by avoiding chained exceptions in the lru_cache. by Raymond Hettinger · 13 years ago
  17. 181ae4b Branch merge by Éric Araujo · 13 years ago
  18. ac3d137 Issue #13158: Fix decoding and encoding of base-256 number fields in tarfile. by Lars Gustäbel · 13 years ago
  19. 82ac9bc Issue #13025: mimetypes is now reading MIME types using the UTF-8 encoding, by Victor Stinner · 13 years ago
  20. 2336c85 Increase test coverage for distutils.filelist (#11751). by Éric Araujo · 13 years ago
  21. a5bc34f Branch merge by Éric Araujo · 13 years ago
  22. 5819dcc Add tests for Unicode handling in distutils’ check and register (#13114) by Éric Araujo · 13 years ago
  23. c0bbe7d test_unicode was forgetting to run the common string tests for str.find() by Antoine Pitrou · 13 years ago
  24. 04ea953 Fix docstring of distutils.util.byte_compile (followup for #11254) by Éric Araujo · 13 years ago
  25. fea2d04 Fix distutils.sysconfig.get_makefile_filename when prefix != exec-prefix by Éric Araujo · 13 years ago
  26. de50455 Fix test_sysconfig when prefix != exec-prefix (#9100). by Éric Araujo · 13 years ago
  27. 47a4521 Fix distutils byte-compilation to comply with PEP 3147 (#11254). by Éric Araujo · 13 years ago
  28. db95c7a Make C code in one distutils test comply with ISO C (#10359). by Éric Araujo · 13 years ago
  29. de8c723 Merged by Barry Warsaw · 13 years ago
  30. 7010a07 Issue #7367: Ensure test directory always gets removed. by Ned Deily · 13 years ago
  31. 78f89d8 - Issue #11250: Back port fix from 3.3 branch, so that 2to3 can handle files by Barry Warsaw · 13 years ago
  32. ed27df7 Issue #7367: Fix pkgutil.walk_paths to skip directories whose by Ned Deily · 13 years ago
  33. caf5a22 Issue #7367: Add test case to test_pkgutil for walking path with by Ned Deily · 13 years ago
  34. 92a81a1 Issue #7425: Refactor test_pydoc test case for '-k' behavior and add by Ned Deily · 13 years ago
  35. eeb7eea Issue #12911: Fix memory consumption when calculating the repr() of huge tuples or lists. by Antoine Pitrou · 13 years ago
  36. bb2095f Branch merge by Éric Araujo · 13 years ago
  37. 3e961a5 Enable the only tests for sys.gettrace by Amaury Forgeot d'Arc · 13 years ago
  38. 42c28cd Issue #13070: Fix a crash when a TextIOWrapper caught in a reference cycle by Charles-François Natali · 13 years ago
  39. 1b7da51 Issue13104 - Fix urllib.request.thishost() utility function. by Senthil Kumaran · 13 years ago
  40. ad87fa6 Issue #13073 - Address the review comments made by Ezio. by Senthil Kumaran · 13 years ago
  41. 63ba97b Fix typo and case in a recently added test by Éric Araujo · 13 years ago
  42. 035018d os.geteuid() may not be available... by Charles-François Natali · 13 years ago
  43. 79164c8 Issue #11956: Always skip test_import.test_unwritable_directory when run as by Charles-François Natali · 13 years ago
  44. a13b1fa Issue #11956: Skip test_import.test_unwritable_directory on FreeBSD when run as by Charles-François Natali · 13 years ago
  45. 1e44fec Issue #13087: BufferedReader.seek() now always raises UnsupportedOperation by Antoine Pitrou · 13 years ago
  46. 94190bb Start fixing test_bigmem: by Antoine Pitrou · 13 years ago
  47. ffd41d9 Issue #7689: Allow pickling of dynamically created classes when their by Antoine Pitrou · 13 years ago
  48. 1efb33a Issue #12881: ctypes: Fix segfault with large structure field names. by Meador Inge · 13 years ago
  49. 86aed0b Fix ResourceWarnings in the TIPC socket tests. by Antoine Pitrou · 13 years ago
  50. 791744b #4147: minidom's toprettyxml no longer adds whitespace to text nodes. by R David Murray · 13 years ago
  51. d8c347a Issue #13034: When decoding some SSL certificates, the subjectAltName extension could be unreported. by Antoine Pitrou · 13 years ago
  52. 53ffdc5 Issue #7732: Don't open a directory as a file anymore while importing a by Victor Stinner · 13 years ago
  53. da6eb53 Issue #12931: Add a test with Unicode URI to test_xmlrpc by Victor Stinner · 13 years ago
  54. a49ed76 Fix a race condition in test_socket.ThreadableTest: the client is reported as by Charles-François Natali · 13 years ago
  55. e51c8da Issue #12981: test_multiprocessing: catch ImportError when importing by Charles-François Natali · 13 years ago
  56. 4507e64 Close #13022: _multiprocessing.recvfd() doesn't check that file descriptor was actually received by Jesus Cea · 13 years ago
  57. d0b10a6 test_multiprocessing removes temporary files by Victor Stinner · 13 years ago
  58. 18d15cb test_httplib removes temporary files by Victor Stinner · 13 years ago
  59. bc566b0 Close #13007: whichdb should recognize gdbm 1.9 magic numbers by Jesus Cea · 13 years ago
  60. 7974642 Issue #9871: Prevent IDLE 3 crash when given byte stings by Ned Deily · 13 years ago
  61. d71bbf9 Fix issue12938 - Update the docstring of html.escape. Include the information on single quote. by Senthil Kumaran · 13 years ago
  62. 305a68e Add the quote_plus call in the test. by Senthil Kumaran · 13 years ago
  63. bbe46d6 Issue #12483: ctypes: Fix a crash when the destruction of a callback by Amaury Forgeot d'Arc · 13 years ago
  64. 1d7deaf Branch merge by Éric Araujo · 13 years ago
  65. 647ef8c Wrap pydoc output under 80 characters by Éric Araujo · 13 years ago
  66. 13e8c8e Fix determination of Metadata version (#8933). Patch by Filip Gruszczyński. by Éric Araujo · 13 years ago
  67. fce67fc Slight cleanup in distutils test_dist. by Éric Araujo · 13 years ago
  68. da752d8 Fix issue #12948: multiprocessing test failures can hang the buildbots by Jesus Cea · 13 years ago
  69. 94f964f Close issue #12948: multiprocessing test failures can hang the buildbots by Jesus Cea · 13 years ago
  70. a1bea6e Issue #9561: distutils now reads and writes egg-info files using UTF-8 by Victor Stinner · 13 years ago
  71. a404b49 Issue #12326: Remove plat-linux3 directory by Victor Stinner · 13 years ago
  72. bcf99ac Branch merge by Éric Araujo · 13 years ago
  73. 2e7ddd3 Issue #12841: Fix tarfile extraction of non-existent uids/gids. by Lars Gustäbel · 13 years ago
  74. d9e0b06 #12888: Fix a bug in HTMLParser.unescape that prevented it to escape more than 128 entities. Patch by Peter Otten. by Ezio Melotti · 13 years ago
  75. 17b288c Branch merge by Éric Araujo · 13 years ago
  76. 3484a87 Merge with release clone. by Georg Brandl · 13 years ago
  77. f6f3a35 add a __dict__ descr for IOBase (closes #12878) by Benjamin Peterson · 13 years ago
  78. cfbd630 Warn instead of crashing because of invalid path in MANIFEST.in (#8286). by Éric Araujo · 13 years ago
  79. 32e2915 Enable catching WARN-level logging messages in distutils' test_sdist by Éric Araujo · 13 years ago
  80. 02dd539 Issue #12764: Fix a crash in ctypes when the name of a Structure field is not by Amaury Forgeot d'Arc · 13 years ago
  81. d9e1789 Branch merge by Éric Araujo · 13 years ago
  82. 979482a Issue #12636: IDLE reads the coding cookie when executing a Python script. by Victor Stinner · 13 years ago
  83. 85c6772 IDLE: fix some RessourceWarning, reuse tokenize.open() by Victor Stinner · 13 years ago
  84. 024de54 Fix typo (was build) and remove redundancy in docstring by Éric Araujo · 13 years ago
  85. 8dad187 Remove obsolete comment by Éric Araujo · 13 years ago
  86. a762285 Issue #12802: the Windows error ERROR_DIRECTORY (numbered 267) is now by Antoine Pitrou · 13 years ago
  87. 3b371cf #10454: a few edits to compileall help messages by Éric Araujo · 13 years ago
  88. 48e484f Fix test_sysconfig when run from a Python installed under /site (#10086). by Éric Araujo · 13 years ago
  89. e897e95 Try to fix one of the bigmem tests in test_pickle by Antoine Pitrou · 13 years ago
  90. faecc38 Issue #11241: subclasses of ctypes.Array can now be subclassed. by Amaury Forgeot d'Arc · 13 years ago
  91. 326e189 Issue #9651: Fix a crash when ctypes.create_string_buffer(0) was passed to by Amaury Forgeot d'Arc · 13 years ago
  92. caa745e Branch merge by Éric Araujo · 13 years ago
  93. 55549ec Issue #12847: Fix a crash with negative PUT and LONG_BINPUT arguments in by Antoine Pitrou · 13 years ago
  94. 82be19f Issue #11564: Avoid crashes when trying to pickle huge objects or containers by Antoine Pitrou · 13 years ago
  95. fbe37df Make bdist_* commands respect --skip-build passed to bdist (#10946) by Éric Araujo · 13 years ago
  96. d54fa55 Make tests faster by reaping threads only at the end by Antoine Pitrou · 13 years ago
  97. 6b2e160 Provide a better diagnosis on socket errors by Antoine Pitrou · 13 years ago
  98. c1fba3e Make regrtest complain when -M and -j are used together. by Nadeem Vawda · 13 years ago
  99. 2f24fda Branch merge by Éric Araujo · 13 years ago
  100. c686167 Turn two ifs into one in the code I commited a few days ago by Éric Araujo · 13 years ago