1. 91ec2e8 #13273: merge with 3.2. by Ezio Melotti · 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. 41032a6 Issue #11183: Add finer-grained exceptions to the ssl module, so that by Antoine Pitrou · 13 years ago
  4. 2f8dfcd add a test for an assertion with tuple msg by Benjamin Peterson · 13 years ago
  5. 2f3ca9f Close #13247: Add cp65001 codec, the Windows UTF-8 (CP_UTF8) by Victor Stinner · 13 years ago
  6. cc96956 Issue #10860: Skip the new test if HTTPS is not available by Petri Lehtinen · 13 years ago
  7. e119c40 Issue #10860: Skip the new test if HTTPS is not available by Petri Lehtinen · 13 years ago
  8. b9e46e9 Changed warn() to warning() in logging tests. by Vinay Sajip · 13 years ago
  9. 8b905bd Issue #13226: Add RTLD_xxx constants to the os module. These constants can by by Victor Stinner · 13 years ago
  10. e0be423 Close #10278: Add clock_getres(), clock_gettime() and CLOCK_xxx constants to by Victor Stinner · 13 years ago
  11. 90bf5f1 Remove mention of narrow/wide builds and update array doc, add a test. by Ezio Melotti · 13 years ago
  12. feeb3a3 Issue #10332: multiprocessing: fix a race condition when a Pool is closed by Charles-François Natali · 13 years ago
  13. f8859e1 Issue #10332: multiprocessing: fix a race condition when a Pool is closed by Charles-François Natali · 13 years ago
  14. 39411f6 Issue #13248, issue #8540: Remove deprecated Context._clamp attribute from Decimal module. by Mark Dickinson · 13 years ago
  15. 24d659d Use InterruptedError instead of checking for EINTR by Antoine Pitrou · 13 years ago
  16. 30970e9 Issue #10925: Add equivalent pure Python code for the builtin int-to-float conversion to test_long. by Mark Dickinson · 13 years ago
  17. 3664568 Issue #13201: equality for range objects is now based on equality of the underlying sequences. Thanks Sven Marnach for the patch. by Mark Dickinson · 13 years ago
  18. 9715d26 Merge issue 1294232 patch from 3.2 by Nick Coghlan · 13 years ago
  19. de31b19 Issue 1294232: Fix errors in metaclass calculation affecting some cases of metaclass inheritance. Patch by Daniel Urban. by Nick Coghlan · 13 years ago
  20. 931b8aa #12753: Add support for Unicode name aliases and named sequences. by Ezio Melotti · 13 years ago
  21. ac65d96 Issue #12170: The count(), find(), rfind(), index() and rindex() methods by Antoine Pitrou · 13 years ago
  22. cd9fdfd Issue 13227: Option to make the lru_cache() type specific (suggested by Andrew Koenig). by Raymond Hettinger · 13 years ago
  23. becd568 Issue #13121: Support in-place math operators for collections.Counter(). by Raymond Hettinger · 13 years ago
  24. 7e3062b default - Fix closes Issue6090 - Raise a ValueError, instead of failing with unrelated by Senthil Kumaran · 13 years ago
  25. 29fa9d4 3.2 - Fix closes Issue6090 - Raise a ValueError, instead of failing with unrelated by Senthil Kumaran · 13 years ago
  26. 294c231 default - Fix closes Issue12529 - cgi.parse_header failure on double quotes and by Senthil Kumaran · 13 years ago
  27. 1ef0c03 3.2 - Fix closes Issue12529 - cgi.parse_header failure on double quotes and by Senthil Kumaran · 13 years ago
  28. f106449 Merge with 3.2. by Ezio Melotti · 13 years ago
  29. e130a52 Remove duplication. by Ezio Melotti · 13 years ago
  30. 6c4e1ae Merged fix for #10860 from 3.2 by Łukasz Langa · 13 years ago
  31. 9e92188 Issue #12281: Fix test_codecs.test_cp932() on Windows XP by Victor Stinner · 13 years ago
  32. 62be4fb Issue #12281: Skip code page tests on non-Windows platforms by Victor Stinner · 13 years ago
  33. 3a50e70 Issue #12281: Rewrite the MBCS codec to handle correctly replace and ignore by Victor Stinner · 13 years ago
  34. a5a9a9c Fixes #10860: Handle empty port after port delimiter in httplib by Łukasz Langa · 13 years ago
  35. cf28eac Issue #13188: When called without an explicit traceback argument, by Antoine Pitrou · 13 years ago
  36. 551ba20 Issue #13188: When called without an explicit traceback argument, by Antoine Pitrou · 13 years ago
  37. 9ea8e4c Instantiate the OS-related exception as soon as we raise it, so that "except" by Victor Stinner · 13 years ago
  38. ecd0207 Issue #12367: Test test_select.test_errno() on FreeBSD by Victor Stinner · 13 years ago
  39. f12e506 Close #13174: Fix extended attributes tests in test_os for SELinux by Victor Stinner · 13 years ago
  40. 386c2d8 test_select: use a timeout=0 in test_errno() by Victor Stinner · 13 years ago
  41. de49d64 Fix closes issue 1673007 urllib.request to support HEAD requests with a new method arg. by Senthil Kumaran · 13 years ago
  42. d8886fc Merge by Raymond Hettinger · 13 years ago
  43. 4b779b3 Issue 13177: Make tracebacks more readable by avoiding chained exceptions in the lru_cache. by Raymond Hettinger · 13 years ago
  44. ac3d137 Issue #13158: Fix decoding and encoding of base-256 number fields in tarfile. by Lars Gustäbel · 13 years ago
  45. 01277d1 Merge with 3.2: Issue #13158: Fix decoding and encoding of base-256 number fields in tarfile. by Lars Gustäbel · 13 years ago
  46. 0e7e715 (Merge 3.2) Issue #13025: mimetypes is now reading MIME types using the UTF-8 by Victor Stinner · 13 years ago
  47. 82ac9bc Issue #13025: mimetypes is now reading MIME types using the UTF-8 encoding, by Victor Stinner · 13 years ago
  48. 21d29c3 Issue #12367: Add a test on error attribute of select.error by Victor Stinner · 13 years ago
  49. 5d6fbe8 Instantiate the OS-related exception as soon as we raise it, so that by Antoine Pitrou · 13 years ago
  50. 6b4883d PEP 3151 / issue #12555: reworking the OS and IO exception hierarchy. by Antoine Pitrou · 13 years ago
  51. ffa547e Fix deprecation warning by Antoine Pitrou · 13 years ago
  52. 2c3b230 Issue #13134: optimize finding single-character strings using memchr by Antoine Pitrou · 13 years ago
  53. 86fe860 Fix the threading infrastructure in test_socket to support skipping by Antoine Pitrou · 13 years ago
  54. 9255464 Branch merge by Éric Araujo · 13 years ago
  55. a5bc34f Branch merge by Éric Araujo · 13 years ago
  56. 798b4df test_unicode was forgetting to run the common string tests for str.find() by Antoine Pitrou · 13 years ago
  57. c0bbe7d test_unicode was forgetting to run the common string tests for str.find() by Antoine Pitrou · 13 years ago
  58. 6ebea15 Merge fixes for #10526, #10359, #11254, #9100 and the bug without number by Éric Araujo · 13 years ago
  59. de50455 Fix test_sysconfig when prefix != exec-prefix (#9100). by Éric Araujo · 13 years ago
  60. 1461775 - Re-enable lib2to3's test_parser.py tests, though with an expected failure by Barry Warsaw · 13 years ago
  61. de8c723 Merged by Barry Warsaw · 13 years ago
  62. 35d1878 Trunk merge by Barry Warsaw · 13 years ago
  63. cb9c5ba - Re-enable lib2to3's test_parser.py tests, though with an expected failure by Barry Warsaw · 13 years ago
  64. 532c363 Merge with 3.2 by Ned Deily · 13 years ago
  65. 7010a07 Issue #7367: Ensure test directory always gets removed. by Ned Deily · 13 years ago
  66. 78f89d8 - Issue #11250: Back port fix from 3.3 branch, so that 2to3 can handle files by Barry Warsaw · 13 years ago
  67. 1d972ad Mark 'abc'.expandtab() optimization as specific to CPython by Victor Stinner · 13 years ago
  68. 59de0ee str.replace(a, a) is now returning str unchanged if a is a by Victor Stinner · 13 years ago
  69. 0959554 Fix memory consumption estimate in test_unicode_repr_wide by Antoine Pitrou · 13 years ago
  70. 9403071 merge from 3.2 by Ned Deily · 13 years ago
  71. caf5a22 Issue #7367: Add test case to test_pkgutil for walking path with by Ned Deily · 13 years ago
  72. 92a81a1 Issue #7425: Refactor test_pydoc test case for '-k' behavior and add by Ned Deily · 13 years ago
  73. 399df55 Fix expected memory consumption for test_translate by Antoine Pitrou · 13 years ago
  74. b6080b6 Fix size estimate for test_unicode_repr by Antoine Pitrou · 13 years ago
  75. a5d9917 Fix test_splitlines to reach its size estimate by Antoine Pitrou · 13 years ago
  76. f81ad6f Make the formula for this estimate more explicit by Antoine Pitrou · 13 years ago
  77. 8ac582f Fix size estimation for test_bigmem.StrTest.test_format by Antoine Pitrou · 13 years ago
  78. de21f84 Fix the expected memory consumption for some tests by Antoine Pitrou · 13 years ago
  79. 47413c1 Issue #10141: socket: add SocketCAN (PF_CAN) support. Initial patch by Matthias by Charles-François Natali · 13 years ago
  80. c61c8d7 Issue #12911: Fix memory consumption when calculating the repr() of huge tuples or lists. by Antoine Pitrou · 13 years ago
  81. eeb7eea Issue #12911: Fix memory consumption when calculating the repr() of huge tuples or lists. by Antoine Pitrou · 13 years ago
  82. 45d9c91 Issue #3163: The struct module gets new format characters 'n' and 'N' by Antoine Pitrou · 13 years ago
  83. 0f4ee93 Branch merge by Éric Araujo · 13 years ago
  84. bb2095f Branch merge by Éric Araujo · 13 years ago
  85. 76558e1 Add regrtest check for caches in packaging.database (see #12167) by Éric Araujo · 13 years ago
  86. 3484c09 Merge from 3.2 by Amaury Forgeot d'Arc · 13 years ago
  87. 3e961a5 Enable the only tests for sys.gettrace by Amaury Forgeot d'Arc · 13 years ago
  88. 42c28cd Issue #13070: Fix a crash when a TextIOWrapper caught in a reference cycle by Charles-François Natali · 13 years ago
  89. 1b7da51 Issue13104 - Fix urllib.request.thishost() utility function. by Senthil Kumaran · 13 years ago
  90. 1079bdf Merge 3.2 by Éric Araujo · 13 years ago
  91. 4300f69 Update skip message printed by test.support.get_attribute. by Éric Araujo · 13 years ago
  92. 63ba97b Fix typo and case in a recently added test by Éric Araujo · 13 years ago
  93. 035018d os.geteuid() may not be available... by Charles-François Natali · 13 years ago
  94. 79164c8 Issue #11956: Always skip test_import.test_unwritable_directory when run as by Charles-François Natali · 13 years ago
  95. a13b1fa Issue #11956: Skip test_import.test_unwritable_directory on FreeBSD when run as by Charles-François Natali · 13 years ago
  96. b7591d4 Also fix pickletester by Antoine Pitrou · 13 years ago
  97. 382e8b5 An embarassing litle typo by Antoine Pitrou · 13 years ago
  98. e19aa38 When expandtabs() would be a no-op, don't create a duplicate string by Antoine Pitrou · 13 years ago
  99. 87a484c Migrate test_bigmem to PEP 393-compliant size calculations (hopefully) by Antoine Pitrou · 13 years ago
  100. bf009f0 Issue #13087: BufferedReader.seek() now always raises UnsupportedOperation by Antoine Pitrou · 13 years ago