1. 399df55 Fix expected memory consumption for test_translate by Antoine Pitrou · 13 years ago
  2. b6080b6 Fix size estimate for test_unicode_repr by Antoine Pitrou · 13 years ago
  3. a5d9917 Fix test_splitlines to reach its size estimate by Antoine Pitrou · 13 years ago
  4. f81ad6f Make the formula for this estimate more explicit by Antoine Pitrou · 13 years ago
  5. 7c46da7 Ensure that 1-char singletons get used by Antoine Pitrou · 13 years ago
  6. 8ac582f Fix size estimation for test_bigmem.StrTest.test_format by Antoine Pitrou · 13 years ago
  7. de21f84 Fix the expected memory consumption for some tests by Antoine Pitrou · 13 years ago
  8. b09460f Issue #10141: Don't use hardcoded frame size in example, use struct.calcsize() by Victor Stinner · 13 years ago
  9. 47413c1 Issue #10141: socket: add SocketCAN (PF_CAN) support. Initial patch by Matthias by Charles-François Natali · 13 years ago
  10. 90c30e8 Remove now duplicate code in _json.c; instead, reuse the new private lib by Antoine Pitrou · 13 years ago
  11. c61c8d7 Issue #12911: Fix memory consumption when calculating the repr() of huge tuples or lists. by Antoine Pitrou · 13 years ago
  12. eeb7eea Issue #12911: Fix memory consumption when calculating the repr() of huge tuples or lists. by Antoine Pitrou · 13 years ago
  13. c6f0df7 Fix PyUnicode_Join() for len==1 and non-exact string by Victor Stinner · 13 years ago
  14. b066cc6 Fix PyUnicode_CHARACTER_SIZE and PyUnicode_KIND_SIZE by Victor Stinner · 13 years ago
  15. 1d4bd25 Fix compilation warnings under 64-bit Windows by Antoine Pitrou · 13 years ago
  16. dbf697a Fix compilation warnings under 64-bit Windows by Antoine Pitrou · 13 years ago
  17. 45d9c91 Issue #3163: The struct module gets new format characters 'n' and 'N' by Antoine Pitrou · 13 years ago
  18. 15a66cf Fix compilation under Windows by Antoine Pitrou · 13 years ago
  19. 200f213 Fix assertion in unicode_adjust_maxchar() by Victor Stinner · 13 years ago
  20. 207dc73 Merge 3.2 by Éric Araujo · 13 years ago
  21. 0f4ee93 Branch merge by Éric Araujo · 13 years ago
  22. bb2095f Branch merge by Éric Araujo · 13 years ago
  23. acf47b8 Fix my last change on PyUnicode_Join(): don't process separator if len==1 by Victor Stinner · 13 years ago
  24. 25a4b29 str.replace() avoids memory when it's possible by Victor Stinner · 13 years ago
  25. 6fd287e Fix return code of “pysetup run COMMAND” (closes #12222) by Éric Araujo · 13 years ago
  26. 8ed34a1 Minor: improve one test name, address pyflakes warnings by Éric Araujo · 13 years ago
  27. fa23cc8 Add test that was promised in a comment but not actually written by Éric Araujo · 13 years ago
  28. 9556a5b Fix incorrect test. by Éric Araujo · 13 years ago
  29. 2c30e39 Change one name in packaging’s test_uninstall to avoid confusion. by Éric Araujo · 13 years ago
  30. 56c161a _copy_characters() fails more quickly in debug mode on inconsistent state by Victor Stinner · 13 years ago
  31. 76558e1 Add regrtest check for caches in packaging.database (see #12167) by Éric Araujo · 13 years ago
  32. 46084ba Fix find_module_path(): make the string ready by Victor Stinner · 13 years ago
  33. c729b8e Fix a compiler warning: don't define unicode_is_singleton() in release mode by Victor Stinner · 13 years ago
  34. b62a7b2 Fix _warnings.c: make the filename string ready by Victor Stinner · 13 years ago
  35. 1d4b35f rephrase PyUnicode_1BYTE_KIND documentation by Victor Stinner · 13 years ago
  36. fb9ea8c Don't check for the maximum character when copying from unicodeobject.c by Victor Stinner · 13 years ago
  37. 05d1189 Fix post-condition in unicode_repr(): check the result, not the input by Victor Stinner · 13 years ago
  38. f48323e replace() uses unicode_fromascii() if the input and replace string is ASCII by Victor Stinner · 13 years ago
  39. 0617b6e unicode_fromascii() checks that the input is ASCII in debug mode by Victor Stinner · 13 years ago
  40. a336de7 traceback: fix dump_ascii() for string with kind=PyUnicode_WCHAR_KIND by Victor Stinner · 13 years ago
  41. 3484c09 Merge from 3.2 by Amaury Forgeot d'Arc · 13 years ago
  42. 3e961a5 Enable the only tests for sys.gettrace by Amaury Forgeot d'Arc · 13 years ago
  43. 42c28cd Issue #13070: Fix a crash when a TextIOWrapper caught in a reference cycle by Charles-François Natali · 13 years ago
  44. 1b7da51 Issue13104 - Fix urllib.request.thishost() utility function. by Senthil Kumaran · 13 years ago
  45. ad87fa6 Issue #13073 - Address the review comments made by Ezio. by Senthil Kumaran · 13 years ago
  46. 1079bdf Merge 3.2 by Éric Araujo · 13 years ago
  47. 4300f69 Update skip message printed by test.support.get_attribute. by Éric Araujo · 13 years ago
  48. c463771 Cosmetic fixes for whitespace and a regex in packaging. by Éric Araujo · 13 years ago
  49. 763cc6e Add tests for comparing candidate and final versions in packaging (#11841). by Éric Araujo · 13 years ago
  50. 63ba97b Fix typo and case in a recently added test by Éric Araujo · 13 years ago
  51. 58a9153 Fix markup used in the documentation of sys.prefix and sys.exec_prefix. by Éric Araujo · 13 years ago
  52. da27263 Move doc of sys.dont_write_bytecode to make all attributes sorted again by Éric Araujo · 13 years ago
  53. 56fab3d Remove inline comment, no longer supported by configparser. by Éric Araujo · 13 years ago
  54. 80a348c Fix typo by Éric Araujo · 13 years ago
  55. 525b1e9 Fix minor wording issue. by Éric Araujo · 13 years ago
  56. 5043f09 More info about PEP 393 in whatsnew and NEWS by Éric Araujo · 13 years ago
  57. b07b97f Minor updates to the whatsnew maintenance rules by Éric Araujo · 13 years ago
  58. 035018d os.geteuid() may not be available... by Charles-François Natali · 13 years ago
  59. 79164c8 Issue #11956: Always skip test_import.test_unwritable_directory when run as by Charles-François Natali · 13 years ago
  60. a13b1fa Issue #11956: Skip test_import.test_unwritable_directory on FreeBSD when run as by Charles-François Natali · 13 years ago
  61. b7591d4 Also fix pickletester by Antoine Pitrou · 13 years ago
  62. 382e8b5 An embarassing litle typo by Antoine Pitrou · 13 years ago
  63. e19aa38 When expandtabs() would be a no-op, don't create a duplicate string by Antoine Pitrou · 13 years ago
  64. 87a484c Migrate test_bigmem to PEP 393-compliant size calculations (hopefully) by Antoine Pitrou · 13 years ago
  65. e71d574 Migrate str.expandtabs to the new API by Antoine Pitrou · 13 years ago
  66. 310638e Try to fix linking failures under Windows by Antoine Pitrou · 13 years ago
  67. 36225c6 Try to fix linking failures under Windows by Antoine Pitrou · 13 years ago
  68. 061fe34 Remove all other uses of the C tolower()/toupper() which could break with a Turkish locale. by Antoine Pitrou · 13 years ago
  69. ed8ba14 Remove all other uses of the C tolower()/toupper() which could break with a Turkish locale. by Antoine Pitrou · 13 years ago
  70. 8e4dd08 Issue #13099: Fix sqlite3.Cursor.lastrowid under a Turkish locale. by Antoine Pitrou · 13 years ago
  71. 1665d2c Issue #13099: Fix sqlite3.Cursor.lastrowid under a Turkish locale. by Antoine Pitrou · 13 years ago
  72. b244d07 Fix compilation error under Windows by Antoine Pitrou · 13 years ago
  73. bf009f0 Issue #13087: BufferedReader.seek() now always raises UnsupportedOperation by Antoine Pitrou · 13 years ago
  74. 0fc80c0 Add John to ACKS by Antoine Pitrou · 13 years ago
  75. 1e44fec Issue #13087: BufferedReader.seek() now always raises UnsupportedOperation by Antoine Pitrou · 13 years ago
  76. 5b99df6 Collect stats a bit more often by Antoine Pitrou · 13 years ago
  77. 75e78b6 Use the faulthandler module's infrastructure to write a GIL-less by Antoine Pitrou · 13 years ago
  78. 031487e Fix test failure by Antoine Pitrou · 13 years ago
  79. 1a3ff48 Start fixing test_bigmem: by Antoine Pitrou · 13 years ago
  80. 94190bb Start fixing test_bigmem: by Antoine Pitrou · 13 years ago
  81. 5a688db Issue #7689: Allow pickling of dynamically created classes when their by Antoine Pitrou · 13 years ago
  82. ffd41d9 Issue #7689: Allow pickling of dynamically created classes when their by Antoine Pitrou · 13 years ago
  83. 29f43f7 Issue #12881: ctypes: Fix segfault with large structure field names. by Meador Inge · 13 years ago
  84. 1efb33a Issue #12881: ctypes: Fix segfault with large structure field names. by Meador Inge · 13 years ago
  85. 7f3140e fix parens by Benjamin Peterson · 13 years ago
  86. 4bfce8f fix formatting by Benjamin Peterson · 13 years ago
  87. ccc51c1 fix compiler warnings by Benjamin Peterson · 13 years ago
  88. 30134f5 Complete documentation of compact ASCII strings by Victor Stinner · 13 years ago
  89. b092365 Move in-place Unicode append to its own subfunction by Victor Stinner · 13 years ago
  90. a5f9163 Reindent internal Unicode macros by Victor Stinner · 13 years ago
  91. a41463c Document utf8_length and wstr_length states by Victor Stinner · 13 years ago
  92. 9566311 resize_inplace() sets utf8_length to zero if the utf8 is not shared8 by Victor Stinner · 13 years ago
  93. 9e9d689 PyUnicode_New() sets utf8_length to zero for latin1 by Victor Stinner · 13 years ago
  94. 0169804 Unicode: raise SystemError instead of ValueError or RuntimeError on invalid by Victor Stinner · 13 years ago
  95. 7f11ad4 Unicode: document when the wstr pointer is shared with data by Victor Stinner · 13 years ago
  96. 0349091 Add _PyUnicode_HAS_WSTR_MEMORY() macro by Victor Stinner · 13 years ago
  97. 9ce5a83 PyUnicode_Join() checks output length in debug mode by Victor Stinner · 13 years ago
  98. b803895 Fix a compiler warning in PyUnicode_Append() by Victor Stinner · 13 years ago
  99. 8cfcbed Improve string forms and PyUnicode_Resize() documentation by Victor Stinner · 13 years ago
  100. bbe7b0a Fix a few ResourceWarnings in idle by Amaury Forgeot d'Arc · 13 years ago