1. 532c363 Merge with 3.2 by Ned Deily · 13 years ago
  2. 7010a07 Issue #7367: Ensure test directory always gets removed. by Ned Deily · 13 years ago
  3. 2da16e6 Fix indentation. by Martin v. Löwis · 13 years ago
  4. c47adb0 Change PyUnicode_KIND to 1,2,4. Drop _KIND_SIZE and _CHARACTER_SIZE. by Martin v. Löwis · 13 years ago
  5. dd07732 PyUnicode_Join() calls directly memcpy() if all strings are of the same kind by Victor Stinner · 13 years ago
  6. 756b169 Issue #12823: remove broken link and replace it with another resource. by Antoine Pitrou · 13 years ago
  7. f394e47 Issue #12823: remove broken link and replace it with another resource. by Antoine Pitrou · 13 years ago
  8. 789e7ad Issue #13063: the Windows error ERROR_NO_DATA (numbered 232 and described by Antoine Pitrou · 13 years ago
  9. 586bfe4 Issue #13063: the Windows error ERROR_NO_DATA (numbered 232 and described by Antoine Pitrou · 13 years ago
  10. 14c0f03 Issue #12943: python -m tokenize support has been added to tokenize. by Meador Inge · 13 years ago
  11. 1d972ad Mark 'abc'.expandtab() optimization as specific to CPython by Victor Stinner · 13 years ago
  12. ba7c226 Make platform.libc_ver() less slow by Antoine Pitrou · 13 years ago
  13. 978b9d2 Fix formatting memory consumption with very large padding specifications by Antoine Pitrou · 13 years ago
  14. db6c7f5 Update C API docs for PEP 393. by Georg Brandl · 13 years ago
  15. 59de0ee str.replace(a, a) is now returning str unchanged if a is a by Victor Stinner · 13 years ago
  16. 72ca65d Fix a Py_UCS4 / Py_UNICODE mixup. by Antoine Pitrou · 13 years ago
  17. 77ea640 Migrate the _csv module to the new unicode APIs by Antoine Pitrou · 13 years ago
  18. 0959554 Fix memory consumption estimate in test_unicode_repr_wide by Antoine Pitrou · 13 years ago
  19. 4574e62 Fix massive slowdown in string formatting with str.format. by Antoine Pitrou · 13 years ago
  20. 5c0ba36 Fix massive slowdown in string formatting with the % operator by Antoine Pitrou · 13 years ago
  21. 438818b Issue #7367: merge from 3.2 by Ned Deily · 13 years ago
  22. 7b847a4 Issue #7367: add NEWS item. by Ned Deily · 13 years ago
  23. 9403071 merge from 3.2 by Ned Deily · 13 years ago
  24. ed27df7 Issue #7367: Fix pkgutil.walk_paths to skip directories whose by Ned Deily · 13 years ago
  25. caf5a22 Issue #7367: Add test case to test_pkgutil for walking path with by Ned Deily · 13 years ago
  26. 92a81a1 Issue #7425: Refactor test_pydoc test case for '-k' behavior and add by Ned Deily · 13 years ago
  27. 17a332a fix compiler warnings by Benjamin Peterson · 13 years ago
  28. 399df55 Fix expected memory consumption for test_translate by Antoine Pitrou · 13 years ago
  29. b6080b6 Fix size estimate for test_unicode_repr by Antoine Pitrou · 13 years ago
  30. a5d9917 Fix test_splitlines to reach its size estimate by Antoine Pitrou · 13 years ago
  31. f81ad6f Make the formula for this estimate more explicit by Antoine Pitrou · 13 years ago
  32. 7c46da7 Ensure that 1-char singletons get used by Antoine Pitrou · 13 years ago
  33. 8ac582f Fix size estimation for test_bigmem.StrTest.test_format by Antoine Pitrou · 13 years ago
  34. de21f84 Fix the expected memory consumption for some tests by Antoine Pitrou · 13 years ago
  35. b09460f Issue #10141: Don't use hardcoded frame size in example, use struct.calcsize() by Victor Stinner · 13 years ago
  36. 47413c1 Issue #10141: socket: add SocketCAN (PF_CAN) support. Initial patch by Matthias by Charles-François Natali · 13 years ago
  37. 90c30e8 Remove now duplicate code in _json.c; instead, reuse the new private lib by Antoine Pitrou · 13 years ago
  38. c61c8d7 Issue #12911: Fix memory consumption when calculating the repr() of huge tuples or lists. by Antoine Pitrou · 13 years ago
  39. eeb7eea Issue #12911: Fix memory consumption when calculating the repr() of huge tuples or lists. by Antoine Pitrou · 13 years ago
  40. c6f0df7 Fix PyUnicode_Join() for len==1 and non-exact string by Victor Stinner · 13 years ago
  41. b066cc6 Fix PyUnicode_CHARACTER_SIZE and PyUnicode_KIND_SIZE by Victor Stinner · 13 years ago
  42. 1d4bd25 Fix compilation warnings under 64-bit Windows by Antoine Pitrou · 13 years ago
  43. dbf697a Fix compilation warnings under 64-bit Windows by Antoine Pitrou · 13 years ago
  44. 45d9c91 Issue #3163: The struct module gets new format characters 'n' and 'N' by Antoine Pitrou · 13 years ago
  45. 15a66cf Fix compilation under Windows by Antoine Pitrou · 13 years ago
  46. 200f213 Fix assertion in unicode_adjust_maxchar() by Victor Stinner · 13 years ago
  47. 207dc73 Merge 3.2 by Éric Araujo · 13 years ago
  48. 0f4ee93 Branch merge by Éric Araujo · 13 years ago
  49. bb2095f Branch merge by Éric Araujo · 13 years ago
  50. acf47b8 Fix my last change on PyUnicode_Join(): don't process separator if len==1 by Victor Stinner · 13 years ago
  51. 25a4b29 str.replace() avoids memory when it's possible by Victor Stinner · 13 years ago
  52. 6fd287e Fix return code of “pysetup run COMMAND” (closes #12222) by Éric Araujo · 13 years ago
  53. 8ed34a1 Minor: improve one test name, address pyflakes warnings by Éric Araujo · 13 years ago
  54. fa23cc8 Add test that was promised in a comment but not actually written by Éric Araujo · 13 years ago
  55. 9556a5b Fix incorrect test. by Éric Araujo · 13 years ago
  56. 2c30e39 Change one name in packaging’s test_uninstall to avoid confusion. by Éric Araujo · 13 years ago
  57. 56c161a _copy_characters() fails more quickly in debug mode on inconsistent state by Victor Stinner · 13 years ago
  58. 76558e1 Add regrtest check for caches in packaging.database (see #12167) by Éric Araujo · 13 years ago
  59. 46084ba Fix find_module_path(): make the string ready by Victor Stinner · 13 years ago
  60. c729b8e Fix a compiler warning: don't define unicode_is_singleton() in release mode by Victor Stinner · 13 years ago
  61. b62a7b2 Fix _warnings.c: make the filename string ready by Victor Stinner · 13 years ago
  62. 1d4b35f rephrase PyUnicode_1BYTE_KIND documentation by Victor Stinner · 13 years ago
  63. fb9ea8c Don't check for the maximum character when copying from unicodeobject.c by Victor Stinner · 13 years ago
  64. 05d1189 Fix post-condition in unicode_repr(): check the result, not the input by Victor Stinner · 13 years ago
  65. f48323e replace() uses unicode_fromascii() if the input and replace string is ASCII by Victor Stinner · 13 years ago
  66. 0617b6e unicode_fromascii() checks that the input is ASCII in debug mode by Victor Stinner · 13 years ago
  67. a336de7 traceback: fix dump_ascii() for string with kind=PyUnicode_WCHAR_KIND by Victor Stinner · 13 years ago
  68. 3484c09 Merge from 3.2 by Amaury Forgeot d'Arc · 13 years ago
  69. 3e961a5 Enable the only tests for sys.gettrace by Amaury Forgeot d'Arc · 13 years ago
  70. 42c28cd Issue #13070: Fix a crash when a TextIOWrapper caught in a reference cycle by Charles-François Natali · 13 years ago
  71. 1b7da51 Issue13104 - Fix urllib.request.thishost() utility function. by Senthil Kumaran · 13 years ago
  72. ad87fa6 Issue #13073 - Address the review comments made by Ezio. by Senthil Kumaran · 13 years ago
  73. 1079bdf Merge 3.2 by Éric Araujo · 13 years ago
  74. 4300f69 Update skip message printed by test.support.get_attribute. by Éric Araujo · 13 years ago
  75. c463771 Cosmetic fixes for whitespace and a regex in packaging. by Éric Araujo · 13 years ago
  76. 763cc6e Add tests for comparing candidate and final versions in packaging (#11841). by Éric Araujo · 13 years ago
  77. 63ba97b Fix typo and case in a recently added test by Éric Araujo · 13 years ago
  78. 58a9153 Fix markup used in the documentation of sys.prefix and sys.exec_prefix. by Éric Araujo · 13 years ago
  79. da27263 Move doc of sys.dont_write_bytecode to make all attributes sorted again by Éric Araujo · 13 years ago
  80. 56fab3d Remove inline comment, no longer supported by configparser. by Éric Araujo · 13 years ago
  81. 80a348c Fix typo by Éric Araujo · 13 years ago
  82. 525b1e9 Fix minor wording issue. by Éric Araujo · 13 years ago
  83. 5043f09 More info about PEP 393 in whatsnew and NEWS by Éric Araujo · 13 years ago
  84. b07b97f Minor updates to the whatsnew maintenance rules by Éric Araujo · 13 years ago
  85. 035018d os.geteuid() may not be available... by Charles-François Natali · 13 years ago
  86. 79164c8 Issue #11956: Always skip test_import.test_unwritable_directory when run as by Charles-François Natali · 13 years ago
  87. a13b1fa Issue #11956: Skip test_import.test_unwritable_directory on FreeBSD when run as by Charles-François Natali · 13 years ago
  88. b7591d4 Also fix pickletester by Antoine Pitrou · 13 years ago
  89. 382e8b5 An embarassing litle typo by Antoine Pitrou · 13 years ago
  90. e19aa38 When expandtabs() would be a no-op, don't create a duplicate string by Antoine Pitrou · 13 years ago
  91. 87a484c Migrate test_bigmem to PEP 393-compliant size calculations (hopefully) by Antoine Pitrou · 13 years ago
  92. e71d574 Migrate str.expandtabs to the new API by Antoine Pitrou · 13 years ago
  93. 310638e Try to fix linking failures under Windows by Antoine Pitrou · 13 years ago
  94. 36225c6 Try to fix linking failures under Windows by Antoine Pitrou · 13 years ago
  95. 061fe34 Remove all other uses of the C tolower()/toupper() which could break with a Turkish locale. by Antoine Pitrou · 13 years ago
  96. ed8ba14 Remove all other uses of the C tolower()/toupper() which could break with a Turkish locale. by Antoine Pitrou · 13 years ago
  97. 8e4dd08 Issue #13099: Fix sqlite3.Cursor.lastrowid under a Turkish locale. by Antoine Pitrou · 13 years ago
  98. 1665d2c Issue #13099: Fix sqlite3.Cursor.lastrowid under a Turkish locale. by Antoine Pitrou · 13 years ago
  99. b244d07 Fix compilation error under Windows by Antoine Pitrou · 13 years ago
  100. bf009f0 Issue #13087: BufferedReader.seek() now always raises UnsupportedOperation by Antoine Pitrou · 13 years ago