1. 9e7a1bc Optimize findchar() for PyUnicode_1BYTE_KIND: use memchr and memrchr by Victor Stinner · 13 years ago
  2. dd4e2f0 Issue #13155: Optimize finding the optimal character width of an unicode string by Antoine Pitrou · 13 years ago
  3. 49a0a21 Unicode replace() avoids calling unicode_adjust_maxchar() when it's useless by Victor Stinner · 13 years ago
  4. 69f55cc Issue #13157: Fix building Python outside its source tree by Victor Stinner · 13 years ago
  5. 21d29c3 Issue #12367: Add a test on error attribute of select.error by Victor Stinner · 13 years ago
  6. a1bf298 What's New in Python 3.3: mention the PEP 3151 by Victor Stinner · 13 years ago
  7. 62ab10a0 Replace mentions of IOError by Antoine Pitrou · 13 years ago
  8. 5d6fbe8 Instantiate the OS-related exception as soon as we raise it, so that by Antoine Pitrou · 13 years ago
  9. 1e4fe70 This shameful limitation of the fileinput module is not relevant anymore. by Antoine Pitrou · 13 years ago
  10. 4272d6a Fix some mentions of IOError by Antoine Pitrou · 13 years ago
  11. a787b65 Fix mentions of IOError in the io module docs by Antoine Pitrou · 13 years ago
  12. f55011f Update doc for BlockingIOError and its alias in the io module by Antoine Pitrou · 13 years ago
  13. 442ee03 Replace mentions of WindowsError by Antoine Pitrou · 13 years ago
  14. 771dea7 Replace a mention of EnvironmentError in the distutils docs. by Antoine Pitrou · 13 years ago
  15. 23a580f Update index entries by Antoine Pitrou · 13 years ago
  16. 9a4a342 Update the C-API docs for exception types by Antoine Pitrou · 13 years ago
  17. 5574c30 Replace mentions of socket.error. by Antoine Pitrou · 13 years ago
  18. 195e702 Mention the merging of other exceptions into OSError. by Antoine Pitrou · 13 years ago
  19. 9b7fcf8 Minimal update of select docs for PEP 3151. by Antoine Pitrou · 13 years ago
  20. 70fa31c Minimal update of socket docs for PEP 3151. More editing is probably desirable. by Antoine Pitrou · 13 years ago
  21. f9c7746 Update exceptions doc for PEP 3151 by Antoine Pitrou · 13 years ago
  22. 6b4883d PEP 3151 / issue #12555: reworking the OS and IO exception hierarchy. by Antoine Pitrou · 13 years ago
  23. 983b143 Backed out changeset 952d91a7d376 by Victor Stinner · 13 years ago
  24. e55ad2d Relax condition by Antoine Pitrou · 13 years ago
  25. d218bf1 stringlib: Fix STRINGLIB_STR for UCS2/UCS4 by Victor Stinner · 13 years ago
  26. 4e10100 Fix compiler warning in _PyUnicode_FromUCS2() by Victor Stinner · 13 years ago
  27. 8cc70dc Fix fastsearch for UCS2 and UCS4 by Victor Stinner · 13 years ago
  28. c5af773 Fix FileIO.readall() (new_buffersize()) for large files by Victor Stinner · 13 years ago
  29. 950468e Use _PyUnicode_CONVERT_BYTES() where applicable. by Antoine Pitrou · 13 years ago
  30. b896001 Merge by Antoine Pitrou · 13 years ago
  31. a2a6477 Fix io.FileIO.readall() on Windows 64 bits by Victor Stinner · 13 years ago
  32. ffa547e Fix deprecation warning by Antoine Pitrou · 13 years ago
  33. 2c5d3cb Fix a compiler warning in _locale by Victor Stinner · 13 years ago
  34. 3f528f0 Fix a compiler warning in zipimport by Victor Stinner · 13 years ago
  35. 8c98189 Fix typo in import.c by Victor Stinner · 13 years ago
  36. 577db2c PyUnicode_AsUnicodeCopy() now checks if PyUnicode_AsUnicode() failed by Victor Stinner · 13 years ago
  37. d9c0631 Strip trailing spaces in _json.c by Victor Stinner · 13 years ago
  38. c4f281e Fix misuse of PyUnicode_GET_SIZE, use PyUnicode_GET_LENGTH instead by Victor Stinner · 13 years ago
  39. ed2682b Reuse PyUnicode_Copy() in validate_and_copy_tuple() by Victor Stinner · 13 years ago
  40. beac78b Use PyUnicode_AsUnicodeAndSize() instead of PyUnicode_GET_SIZE() by Victor Stinner · 13 years ago
  41. e459a08 Issue #13136: speed up conversion between different character widths. by Antoine Pitrou · 13 years ago
  42. 2c3b230 Issue #13134: optimize finding single-character strings using memchr by Antoine Pitrou · 13 years ago
  43. 60dd7dc Merge by Antoine Pitrou · 13 years ago
  44. 1c027e5 Merge issue #13145 fix. by Mark Dickinson · 13 years ago
  45. f1ab47e Issue #13145. Fix incorrect documentation for PyNumber_ToBase. Thanks Sven Marnach. by Mark Dickinson · 13 years ago
  46. bb0ad4c Avoid pulling threading when _thread is sufficient by Antoine Pitrou · 13 years ago
  47. dc567e4 Use a dict for faster sysconfig startup (issue #13150) by Antoine Pitrou · 13 years ago
  48. 10a99b0 Issue #13150: The tokenize module doesn't compile large regular expressions at startup anymore. by Antoine Pitrou · 13 years ago
  49. 699cd9f Remove unused variable by Antoine Pitrou · 13 years ago
  50. 2871698 /* Remove unused code. It has been committed out since 2000 (!). */ by Antoine Pitrou · 13 years ago
  51. aa2cb3a Increase test coverage for packaging.manifest (#11751). by Éric Araujo · 13 years ago
  52. c822f08 Merge #11751 from 3.2 by Éric Araujo · 13 years ago
  53. 2336c85 Increase test coverage for distutils.filelist (#11751). by Éric Araujo · 13 years ago
  54. 30cc654 Add tests for Unicode handling in packaging’ check and register (#13114) by Éric Araujo · 13 years ago
  55. 53bb548 Avoid exporting private helpers (thanks "make smelly") by Antoine Pitrou · 13 years ago
  56. 86fe860 Fix the threading infrastructure in test_socket to support skipping by Antoine Pitrou · 13 years ago
  57. 1ee1b6f Use identifier API for PyObject_GetAttrString. by Martin v. Löwis · 13 years ago
  58. 794d567 any_find_slice() doesn't use callbacks anymore by Victor Stinner · 13 years ago
  59. a6968ed Merge whatsnew fixes with 3.2. by Ezio Melotti · 13 years ago
  60. 4e15828 Fix/improve markup in whatsnew/2.7. by Ezio Melotti · 13 years ago
  61. 5b194cc #13138: merge with 3.2. by Ezio Melotti · 13 years ago
  62. 138fc89 #13138: add missing versionadded. by Ezio Melotti · 13 years ago
  63. be22d1d Clean-up and improve the priority queue example in the heapq docs. by Raymond Hettinger · 13 years ago
  64. df7c4cd Clean-up and improve the priority queue example in the heapq docs. by Raymond Hettinger · 13 years ago
  65. 87da872 Drop extra semicolon. by Martin v. Löwis · 13 years ago
  66. afe55bb Add API for static strings, primarily good for identifiers. by Martin v. Löwis · 13 years ago
  67. 67df285 Merge 3.2 by Éric Araujo · 13 years ago
  68. 9255464 Branch merge by Éric Araujo · 13 years ago
  69. a5bc34f Branch merge by Éric Araujo · 13 years ago
  70. 5819dcc Add tests for Unicode handling in distutils’ check and register (#13114) by Éric Araujo · 13 years ago
  71. 8af607b As it turns out, this bug was already in the tracker: #11171 by Éric Araujo · 13 years ago
  72. eaf139b Fix typo in the PyUnicode_Find() implementation by Antoine Pitrou · 13 years ago
  73. 798b4df test_unicode was forgetting to run the common string tests for str.find() by Antoine Pitrou · 13 years ago
  74. c0bbe7d test_unicode was forgetting to run the common string tests for str.find() by Antoine Pitrou · 13 years ago
  75. 760531a Fix a missing encoding argument when opening a text file in some of iobench's subtests. by Antoine Pitrou · 13 years ago
  76. 74472a9 Fix a missing encoding argument when opening a text file in some of iobench's subtests. by Antoine Pitrou · 13 years ago
  77. 3c0c5f2 Fix test_gdb following the small unicode struct change in c25262e97304 (issue #13130) by Antoine Pitrou · 13 years ago
  78. 388349a Closes #12192: Document that mutating list methods do not return the instance (original patch by Mike Hoy). by Georg Brandl · 13 years ago
  79. a29e4f6 Fix packaging byte-compilation to comply with PEP 3147 (#11254). by Éric Araujo · 13 years ago
  80. 04ea953 Fix docstring of distutils.util.byte_compile (followup for #11254) by Éric Araujo · 13 years ago
  81. 73b1e7d Make C code in one packaging test comply with ISO C (#10359). by Éric Araujo · 13 years ago
  82. 6ebea15 Merge fixes for #10526, #10359, #11254, #9100 and the bug without number by Éric Araujo · 13 years ago
  83. fea2d04 Fix distutils.sysconfig.get_makefile_filename when prefix != exec-prefix by Éric Araujo · 13 years ago
  84. de50455 Fix test_sysconfig when prefix != exec-prefix (#9100). by Éric Araujo · 13 years ago
  85. 47a4521 Fix distutils byte-compilation to comply with PEP 3147 (#11254). by Éric Araujo · 13 years ago
  86. db95c7a Make C code in one distutils test comply with ISO C (#10359). by Éric Araujo · 13 years ago
  87. 30589c9 Issue #10141: fix socketmodule compilation on Linux systems with <linux/can.h> by Charles-François Natali · 13 years ago
  88. 35a502b Fix a typo and a broken link (part of #10536). by Éric Araujo · 13 years ago
  89. 1461775 - Re-enable lib2to3's test_parser.py tests, though with an expected failure by Barry Warsaw · 13 years ago
  90. de8c723 Merged by Barry Warsaw · 13 years ago
  91. 35d1878 Trunk merge by Barry Warsaw · 13 years ago
  92. cb9c5ba - Re-enable lib2to3's test_parser.py tests, though with an expected failure by Barry Warsaw · 13 years ago
  93. 532c363 Merge with 3.2 by Ned Deily · 13 years ago
  94. 7010a07 Issue #7367: Ensure test directory always gets removed. by Ned Deily · 13 years ago
  95. 2da16e6 Fix indentation. by Martin v. Löwis · 13 years ago
  96. c47adb0 Change PyUnicode_KIND to 1,2,4. Drop _KIND_SIZE and _CHARACTER_SIZE. by Martin v. Löwis · 13 years ago
  97. c6cfd4a Branch merge. by Barry Warsaw · 13 years ago
  98. 78f89d8 - Issue #11250: Back port fix from 3.3 branch, so that 2to3 can handle files by Barry Warsaw · 13 years ago
  99. dd07732 PyUnicode_Join() calls directly memcpy() if all strings are of the same kind by Victor Stinner · 13 years ago
  100. 756b169 Issue #12823: remove broken link and replace it with another resource. by Antoine Pitrou · 13 years ago