1. 3a4586a Issue #18923: Update subprocess to use the new selectors module. by Charles-François Natali · 11 years ago
  2. 2ce6c44 Simplify test.test_importlib.__main__ by Brett Cannon · 11 years ago
  3. 330f71b Issue #16803: test.test_importlib.import_ now tests frozen and source code by Brett Cannon · 11 years ago
  4. 2fdf4e7 Move PyErr_NoMemory() closer to the failure. by Stefan Krah · 11 years ago
  5. f35b027 Move PyErr_NoMemory() closer to the failure. by Stefan Krah · 11 years ago
  6. a0fd1f5 Change style to match the surrounding code (no early returns). by Stefan Krah · 11 years ago
  7. 5ec6be9 Change style to match the surrounding code (no early returns). by Stefan Krah · 11 years ago
  8. a3c6963 Issue #16803: test.test_importlib.frozen now runs both frozen and source code by Brett Cannon · 11 years ago
  9. 8ea8650 Issue #19512, #19526: Exclude the new _PyDict_DelItemId() function from the by Victor Stinner · 11 years ago
  10. 70e11ac Issue #19437: Fix datetime_subtract(), handle new_delta() failure by Victor Stinner · 11 years ago
  11. aa5bbfa Issue #19437: Fix _io._IOBase.close(), handle _PyObject_SetAttrId() failure by Victor Stinner · 11 years ago
  12. 50abf22 Issue #19437: Fix fsconvert_strdup(), raise a MemoryError on PyMem_Malloc() by Victor Stinner · 11 years ago
  13. 66b3270 _Py_normalize_encoding(): explain how the value 6 was computed by Victor Stinner · 11 years ago
  14. bd303c1 Issue #19512, #19515: remove shared identifiers, move identifiers where they by Victor Stinner · 11 years ago
  15. 07e9e38 frameobject.c: Use an identifer instead of creating explicitly an interned by Victor Stinner · 11 years ago
  16. e8453bc C API doc: try to group concrete objects by Victor Stinner · 11 years ago
  17. 3241641 Issue #19514: Add Andrei Dorian Duma to Misc/ACKS for changeset 4a09cc62419b by Victor Stinner · 11 years ago
  18. df23e30 Fix _Py_normalize_encoding(): ensure that buffer is big enough to store "utf-8" by Victor Stinner · 11 years ago
  19. e75fc14 Issue #19514: Deduplicate some _Py_IDENTIFIER declarations. by Martin v. Löwis · 11 years ago
  20. d029359 Remove redundant test_selectors.py from test_asyncio. by Guido van Rossum · 11 years ago
  21. a5b9599 #17080: improve error message of float/complex when the wrong type is passed. by Ezio Melotti · 11 years ago
  22. d0786a1 Optimize BaseSelector.modify(). Patch by Arnaud Faure. by Guido van Rossum · 11 years ago
  23. b703881 #19480: merge with 3.3. by Ezio Melotti · 11 years ago
  24. 7165d8b #19480: HTMLParser now accepts all valid start-tag names as defined by the HTML5 standard. by Ezio Melotti · 11 years ago
  25. 589327e Merge #18985: Improve fcntl documentation. by R David Murray · 11 years ago
  26. d5a2f0b #18985: Improve fcntl documentation. by R David Murray · 11 years ago
  27. efa7a0e print_error_text() doesn't encode the filename anymore by Victor Stinner · 11 years ago
  28. 0b69fbc asyncio: Add close() back to Unix selector event loop, to remove all signal handlers. Should fix buildbot issues. by Guido van Rossum · 11 years ago
  29. 79ed4c7 remove an outdated comment by Victor Stinner · 11 years ago
  30. 53e9ec4 Issue #19512: Use the new _PyId_builtins identifier by Victor Stinner · 11 years ago
  31. ad14ccd Issue #19512: add _PyUnicode_CompareWithId() function by Victor Stinner · 11 years ago
  32. 937114f print_exception(): don't encode the module name to UTF-8 by Victor Stinner · 11 years ago
  33. eaa2883 Issue #19512: builtin print() function uses an identifier instead of literal by Victor Stinner · 11 years ago
  34. e7f516c Issue #19512: _count_elements() of _collections reuses PyId_get identifier by Victor Stinner · 11 years ago
  35. d9d0419 Issue #19512: fileio_init() reuses PyId_name identifier instead of "name" by Victor Stinner · 11 years ago
  36. ae9f161 Issue #19512: __build_class() builtin now uses an identifier for the "metaclass" string by Victor Stinner · 11 years ago
  37. 0905437 Issue #19512: add some common identifiers to only create common strings once, by Victor Stinner · 11 years ago
  38. bb52020 Issue #19512: pickle now uses an identifier to only create the Unicode string by Victor Stinner · 11 years ago
  39. cab75e3 Issue #19512: PRINT_EXPR bytecode now uses an identifier to get sys.displayhook by Victor Stinner · 11 years ago
  40. d67bd45 Issue #19512: Add _PySys_GetObjectId() and _PySys_SetObjectId() functions by Victor Stinner · 11 years ago
  41. b44562b Issue #19512: eval() and exec() now use an identifier for "__builtins__" string by Victor Stinner · 11 years ago
  42. 3688aa9 Issue #19512: type_abstractmethods() and type_set_abstractmethods() now use an by Victor Stinner · 11 years ago
  43. 5fd2e5a Issue #19512: Add a new _PyDict_DelItemId() function, similar to by Victor Stinner · 11 years ago
  44. 7a07e45 Issue #19512: Py_ReprEnter() and Py_ReprLeave() now use an identifier for the by Victor Stinner · 11 years ago
  45. 95701bd Issue #19512: Add PyRun_InteractiveOneObject() function by Victor Stinner · 11 years ago
  46. 4ee41c5 Issue #19512: _print_total_refs() now uses an identifier to get "showrefcount" by Victor Stinner · 11 years ago
  47. d02fbb8 Issue #19512: sys_displayhook() now uses an identifier for "builtins" by Victor Stinner · 11 years ago
  48. 6853108 Issue #18582: fix memory leak in pbkdf2 code by Christian Heimes · 11 years ago
  49. 95887b7 Remove incorrect comment from dis tests by Nick Coghlan · 11 years ago
  50. 07155c9 Fix typo in updated dis docs by Nick Coghlan · 11 years ago
  51. 90b8e7d Close #19378: address flaws in the new dis module APIs by Nick Coghlan · 11 years ago
  52. e0881f4 #19439: Update PCbuild/readme.txt with new sub-project by Zachary Ware · 11 years ago
  53. 05f31bf doc: fix typo by Victor Stinner · 11 years ago
  54. 24f1258 Revert wrong change in previous commit (issue #19085). by Serhiy Storchaka · 11 years ago
  55. 7c934da Revert wrong change in previous commit (issue #19085). by Serhiy Storchaka · 11 years ago
  56. 96c0168 Fix test_insertwidth Tkinter tests on Tk 8.5 with patchlevel >= 8.5.12 (issue #19085). by Serhiy Storchaka · 11 years ago
  57. 8f9f587 Fix test_insertwidth Tkinter tests on Tk 8.5 with patchlevel >= 8.5.12 (issue #19085). by Serhiy Storchaka · 11 years ago
  58. 17972a7 Fix typo in tkinter tests (issue #19085). by Serhiy Storchaka · 11 years ago
  59. 98555f3 Fix typo in tkinter tests (issue #19085). by Serhiy Storchaka · 11 years ago
  60. 98e818b Issue #19437: Fix compiler_class(), handle compiler_lookup_arg() failure by Victor Stinner · 11 years ago
  61. 357f515 Issue #19437: Fix _threading.RLock constructor (rlock_new), call by Victor Stinner · 11 years ago
  62. 85a12a8 Issue #19437: Fix pysqlite_cursor_iternext() of sqlite3, when the row factory by Victor Stinner · 11 years ago
  63. b3e1ef1 Issue #19437: Fix pysqlite_connection_call() of sqlite3, return NULL when by Victor Stinner · 11 years ago
  64. dd4b299 Issue #19437: Fix pysqlite_cursor_iternext() of sqlite3, handle by Victor Stinner · 11 years ago
  65. 6079814 Issue #10197 Tweak docs for subprocess.getstatusoutput and align the documentation, the module docstring, and the function docstring. by Tim Golden · 11 years ago
  66. be47cff Issue #15663: merge build-installer.py changes by Ned Deily · 11 years ago
  67. 6fc5f98 Issue #15663: Revert OS X installer built-in Tcl/Tk support for 3.3.3. by Ned Deily · 11 years ago
  68. b2bc4df Closes #18345: Merged documentation update from 3.3. by Vinay Sajip · 11 years ago
  69. 2c1adcb Issue #18345: Added cookbook example illustrating handler customisation. by Vinay Sajip · 11 years ago
  70. c1bd2fe Merge with 3.3 by Terry Jan Reedy · 11 years ago
  71. 5c81164 Issue #19397: test_pydoc now works with -S (help not added to builtins). by Terry Jan Reedy · 11 years ago
  72. 0eaa5ac asyncio: Refactor SIGCHLD handling. By Anthony Baire. by Guido van Rossum · 11 years ago
  73. ccea084 asyncio: Locks improvements by Arnaud Faure: better repr(), change Conditio\ by Guido van Rossum · 11 years ago
  74. b58d4a3 Issue #19085: Fix running test_ttk_textonly on displayless host. by Serhiy Storchaka · 11 years ago
  75. 2028e01 Issue #19085: Fix running test_ttk_textonly on displayless host. by Serhiy Storchaka · 11 years ago
  76. 20acaa7 Issue #19085: Fix Tkinter tests on Tk 8.5 with patchlevel < 8.5.12. by Serhiy Storchaka · 11 years ago
  77. 8d8599c Issue #19085: Fix Tkinter tests on Tk 8.5 with patchlevel < 8.5.12. by Serhiy Storchaka · 11 years ago
  78. 3daaf5f Fix functools.partialmethod docs and __all__ by Nick Coghlan · 11 years ago
  79. 21ea21e Issue #19424: PyUnicode_CompareWithASCIIString() normalizes memcmp() result by Victor Stinner · 11 years ago
  80. f0c7b2a Issue #16286: remove duplicated identity check from unicode_compare() by Victor Stinner · 11 years ago
  81. fd9e44d Issue #16286: optimize PyUnicode_RichCompare() for identical strings (same by Victor Stinner · 11 years ago
  82. c8bc537 Issue #16286: write a new subfunction bytes_compare_eq() by Victor Stinner · 11 years ago
  83. 63d867e merge with 3.3 by Georg Brandl · 11 years ago
  84. 975708a null-merge 3.2 backouts by Georg Brandl · 11 years ago
  85. ee7f3fc Backout 7d399099334d. by Georg Brandl · 11 years ago
  86. 7b5d6ad Backout 265d369ad3b9. by Georg Brandl · 11 years ago
  87. 7ec3e56 Backout d80207d15294. by Georg Brandl · 11 years ago
  88. e051b55 Note that examples are sorted only for convenience. by Georg Brandl · 11 years ago
  89. db5ab78 Issue #15392: merge from 3.3 by Ned Deily · 11 years ago
  90. c3909e5 Issue #15392: Install idlelib/idle_test. by Ned Deily · 11 years ago
  91. 9083db6 Null merge 3.3 by Zachary Ware · 11 years ago
  92. 200bcbc Issue #19391: Clean up PCbuild/readme.txt by Zachary Ware · 11 years ago
  93. bd90d09 #18678: Correct names of spwd struct members. by R David Murray · 11 years ago
  94. ed4500f Issue #18702 null merge by Ned Deily · 11 years ago
  95. 4376763 Issue #18702: All skipped tests now reported as skipped. by Serhiy Storchaka · 11 years ago
  96. 7908068 Issue #18702: All skipped tests now reported as skipped. by Serhiy Storchaka · 11 years ago
  97. 834856a Merge by Tim Golden · 11 years ago
  98. 7a07cc9 Merge by Tim Golden · 11 years ago
  99. 2964138 Issue #10197: Indicate availability of subprocess.get[status]output on Windows and add a note about the effects of universal newlines by Tim Golden · 11 years ago
  100. 3a2abb5 Issue #10197: Indicate availability of subprocess.get[status]output on Windows and add a note about the effects of universal newlines by Tim Golden · 11 years ago