1. 5574c30 Replace mentions of socket.error. by Antoine Pitrou · 13 years ago
  2. 195e702 Mention the merging of other exceptions into OSError. by Antoine Pitrou · 13 years ago
  3. 9b7fcf8 Minimal update of select docs for PEP 3151. by Antoine Pitrou · 13 years ago
  4. 70fa31c Minimal update of socket docs for PEP 3151. More editing is probably desirable. by Antoine Pitrou · 13 years ago
  5. f9c7746 Update exceptions doc for PEP 3151 by Antoine Pitrou · 13 years ago
  6. 6b4883d PEP 3151 / issue #12555: reworking the OS and IO exception hierarchy. by Antoine Pitrou · 13 years ago
  7. 983b143 Backed out changeset 952d91a7d376 by Victor Stinner · 13 years ago
  8. e55ad2d Relax condition by Antoine Pitrou · 13 years ago
  9. d218bf1 stringlib: Fix STRINGLIB_STR for UCS2/UCS4 by Victor Stinner · 13 years ago
  10. 4e10100 Fix compiler warning in _PyUnicode_FromUCS2() by Victor Stinner · 13 years ago
  11. 8cc70dc Fix fastsearch for UCS2 and UCS4 by Victor Stinner · 13 years ago
  12. c5af773 Fix FileIO.readall() (new_buffersize()) for large files by Victor Stinner · 13 years ago
  13. 950468e Use _PyUnicode_CONVERT_BYTES() where applicable. by Antoine Pitrou · 13 years ago
  14. b896001 Merge by Antoine Pitrou · 13 years ago
  15. a2a6477 Fix io.FileIO.readall() on Windows 64 bits by Victor Stinner · 13 years ago
  16. ffa547e Fix deprecation warning by Antoine Pitrou · 13 years ago
  17. 2c5d3cb Fix a compiler warning in _locale by Victor Stinner · 13 years ago
  18. 3f528f0 Fix a compiler warning in zipimport by Victor Stinner · 13 years ago
  19. 8c98189 Fix typo in import.c by Victor Stinner · 13 years ago
  20. 577db2c PyUnicode_AsUnicodeCopy() now checks if PyUnicode_AsUnicode() failed by Victor Stinner · 13 years ago
  21. d9c0631 Strip trailing spaces in _json.c by Victor Stinner · 13 years ago
  22. c4f281e Fix misuse of PyUnicode_GET_SIZE, use PyUnicode_GET_LENGTH instead by Victor Stinner · 13 years ago
  23. ed2682b Reuse PyUnicode_Copy() in validate_and_copy_tuple() by Victor Stinner · 13 years ago
  24. beac78b Use PyUnicode_AsUnicodeAndSize() instead of PyUnicode_GET_SIZE() by Victor Stinner · 13 years ago
  25. e459a08 Issue #13136: speed up conversion between different character widths. by Antoine Pitrou · 13 years ago
  26. 2c3b230 Issue #13134: optimize finding single-character strings using memchr by Antoine Pitrou · 13 years ago
  27. 60dd7dc Merge by Antoine Pitrou · 13 years ago
  28. 1c027e5 Merge issue #13145 fix. by Mark Dickinson · 13 years ago
  29. f1ab47e Issue #13145. Fix incorrect documentation for PyNumber_ToBase. Thanks Sven Marnach. by Mark Dickinson · 13 years ago
  30. bb0ad4c Avoid pulling threading when _thread is sufficient by Antoine Pitrou · 13 years ago
  31. dc567e4 Use a dict for faster sysconfig startup (issue #13150) by Antoine Pitrou · 13 years ago
  32. 10a99b0 Issue #13150: The tokenize module doesn't compile large regular expressions at startup anymore. by Antoine Pitrou · 13 years ago
  33. 699cd9f Remove unused variable by Antoine Pitrou · 13 years ago
  34. 2871698 /* Remove unused code. It has been committed out since 2000 (!). */ by Antoine Pitrou · 13 years ago
  35. 53bb548 Avoid exporting private helpers (thanks "make smelly") by Antoine Pitrou · 13 years ago
  36. 86fe860 Fix the threading infrastructure in test_socket to support skipping by Antoine Pitrou · 13 years ago
  37. 1ee1b6f Use identifier API for PyObject_GetAttrString. by Martin v. Löwis · 13 years ago
  38. 794d567 any_find_slice() doesn't use callbacks anymore by Victor Stinner · 13 years ago
  39. a6968ed Merge whatsnew fixes with 3.2. by Ezio Melotti · 13 years ago
  40. 4e15828 Fix/improve markup in whatsnew/2.7. by Ezio Melotti · 13 years ago
  41. 5b194cc #13138: merge with 3.2. by Ezio Melotti · 13 years ago
  42. 138fc89 #13138: add missing versionadded. by Ezio Melotti · 13 years ago
  43. be22d1d Clean-up and improve the priority queue example in the heapq docs. by Raymond Hettinger · 13 years ago
  44. df7c4cd Clean-up and improve the priority queue example in the heapq docs. by Raymond Hettinger · 13 years ago
  45. 87da872 Drop extra semicolon. by Martin v. Löwis · 13 years ago
  46. afe55bb Add API for static strings, primarily good for identifiers. by Martin v. Löwis · 13 years ago
  47. 67df285 Merge 3.2 by Éric Araujo · 13 years ago
  48. 9255464 Branch merge by Éric Araujo · 13 years ago
  49. a5bc34f Branch merge by Éric Araujo · 13 years ago
  50. 5819dcc Add tests for Unicode handling in distutils’ check and register (#13114) by Éric Araujo · 13 years ago
  51. 8af607b As it turns out, this bug was already in the tracker: #11171 by Éric Araujo · 13 years ago
  52. eaf139b Fix typo in the PyUnicode_Find() implementation by Antoine Pitrou · 13 years ago
  53. 798b4df test_unicode was forgetting to run the common string tests for str.find() by Antoine Pitrou · 13 years ago
  54. c0bbe7d test_unicode was forgetting to run the common string tests for str.find() by Antoine Pitrou · 13 years ago
  55. 760531a Fix a missing encoding argument when opening a text file in some of iobench's subtests. by Antoine Pitrou · 13 years ago
  56. 74472a9 Fix a missing encoding argument when opening a text file in some of iobench's subtests. by Antoine Pitrou · 13 years ago
  57. 3c0c5f2 Fix test_gdb following the small unicode struct change in c25262e97304 (issue #13130) by Antoine Pitrou · 13 years ago
  58. 388349a Closes #12192: Document that mutating list methods do not return the instance (original patch by Mike Hoy). by Georg Brandl · 13 years ago
  59. a29e4f6 Fix packaging byte-compilation to comply with PEP 3147 (#11254). by Éric Araujo · 13 years ago
  60. 04ea953 Fix docstring of distutils.util.byte_compile (followup for #11254) by Éric Araujo · 13 years ago
  61. 73b1e7d Make C code in one packaging test comply with ISO C (#10359). by Éric Araujo · 13 years ago
  62. 6ebea15 Merge fixes for #10526, #10359, #11254, #9100 and the bug without number by Éric Araujo · 13 years ago
  63. fea2d04 Fix distutils.sysconfig.get_makefile_filename when prefix != exec-prefix by Éric Araujo · 13 years ago
  64. de50455 Fix test_sysconfig when prefix != exec-prefix (#9100). by Éric Araujo · 13 years ago
  65. 47a4521 Fix distutils byte-compilation to comply with PEP 3147 (#11254). by Éric Araujo · 13 years ago
  66. db95c7a Make C code in one distutils test comply with ISO C (#10359). by Éric Araujo · 13 years ago
  67. 30589c9 Issue #10141: fix socketmodule compilation on Linux systems with <linux/can.h> by Charles-François Natali · 13 years ago
  68. 35a502b Fix a typo and a broken link (part of #10536). by Éric Araujo · 13 years ago
  69. 1461775 - Re-enable lib2to3's test_parser.py tests, though with an expected failure by Barry Warsaw · 13 years ago
  70. de8c723 Merged by Barry Warsaw · 13 years ago
  71. 35d1878 Trunk merge by Barry Warsaw · 13 years ago
  72. cb9c5ba - Re-enable lib2to3's test_parser.py tests, though with an expected failure by Barry Warsaw · 13 years ago
  73. 532c363 Merge with 3.2 by Ned Deily · 13 years ago
  74. 7010a07 Issue #7367: Ensure test directory always gets removed. by Ned Deily · 13 years ago
  75. 2da16e6 Fix indentation. by Martin v. Löwis · 13 years ago
  76. c47adb0 Change PyUnicode_KIND to 1,2,4. Drop _KIND_SIZE and _CHARACTER_SIZE. by Martin v. Löwis · 13 years ago
  77. c6cfd4a Branch merge. by Barry Warsaw · 13 years ago
  78. 78f89d8 - Issue #11250: Back port fix from 3.3 branch, so that 2to3 can handle files by Barry Warsaw · 13 years ago
  79. dd07732 PyUnicode_Join() calls directly memcpy() if all strings are of the same kind by Victor Stinner · 13 years ago
  80. 756b169 Issue #12823: remove broken link and replace it with another resource. by Antoine Pitrou · 13 years ago
  81. f394e47 Issue #12823: remove broken link and replace it with another resource. by Antoine Pitrou · 13 years ago
  82. 789e7ad Issue #13063: the Windows error ERROR_NO_DATA (numbered 232 and described by Antoine Pitrou · 13 years ago
  83. 586bfe4 Issue #13063: the Windows error ERROR_NO_DATA (numbered 232 and described by Antoine Pitrou · 13 years ago
  84. 14c0f03 Issue #12943: python -m tokenize support has been added to tokenize. by Meador Inge · 13 years ago
  85. 1d972ad Mark 'abc'.expandtab() optimization as specific to CPython by Victor Stinner · 13 years ago
  86. ba7c226 Make platform.libc_ver() less slow by Antoine Pitrou · 13 years ago
  87. 978b9d2 Fix formatting memory consumption with very large padding specifications by Antoine Pitrou · 13 years ago
  88. db6c7f5 Update C API docs for PEP 393. by Georg Brandl · 13 years ago
  89. 59de0ee str.replace(a, a) is now returning str unchanged if a is a by Victor Stinner · 13 years ago
  90. 72ca65d Fix a Py_UCS4 / Py_UNICODE mixup. by Antoine Pitrou · 13 years ago
  91. 77ea640 Migrate the _csv module to the new unicode APIs by Antoine Pitrou · 13 years ago
  92. 0959554 Fix memory consumption estimate in test_unicode_repr_wide by Antoine Pitrou · 13 years ago
  93. 4574e62 Fix massive slowdown in string formatting with str.format. by Antoine Pitrou · 13 years ago
  94. 5c0ba36 Fix massive slowdown in string formatting with the % operator by Antoine Pitrou · 13 years ago
  95. 438818b Issue #7367: merge from 3.2 by Ned Deily · 13 years ago
  96. 7b847a4 Issue #7367: add NEWS item. by Ned Deily · 13 years ago
  97. 9403071 merge from 3.2 by Ned Deily · 13 years ago
  98. ed27df7 Issue #7367: Fix pkgutil.walk_paths to skip directories whose by Ned Deily · 13 years ago
  99. caf5a22 Issue #7367: Add test case to test_pkgutil for walking path with by Ned Deily · 13 years ago
  100. 92a81a1 Issue #7425: Refactor test_pydoc test case for '-k' behavior and add by Ned Deily · 13 years ago