1. 095d99f Issue #18408: Fix listpop(), handle list_ass_slice() failure by Victor Stinner · 11 years ago
  2. 479054b Issue #18408: Fix PyErr_SetImportError(), handle PyDict_SetItemString() failure by Victor Stinner · 11 years ago
  3. 8e54b1c Issue #18408: Fix _PyImport_LoadDynamicModule(), handle PyUnicode_FromFormat() failure by Victor Stinner · 11 years ago
  4. 0fae8f9 Issue #18408: Fix ast_for_atom(), PyErr_Fetch(&type, &value, &tback) can set value to NULL by Victor Stinner · 11 years ago
  5. 764a46d Issue #18408: Fix heapq.heappop(), handle PyList_SetSlice() failure by Victor Stinner · 11 years ago
  6. 2ff51b8 Issue #18408: Fix time.tzset(), detect exception when calling PyInit_timezone() by Victor Stinner · 11 years ago
  7. 9a146ee Issue #18408: Fix structseq_reduce(), handle PyDict_SetItemString() failure by Victor Stinner · 11 years ago
  8. e555314 Issue #18266: test_largefile now works with unittest test discovery and by Serhiy Storchaka · 11 years ago
  9. c406a12 Issue #18266: test_largefile now works with unittest test discovery and by Serhiy Storchaka · 11 years ago
  10. cb478b7 Issue #17767: test_locale now works with unittest test discovery. by Serhiy Storchaka · 11 years ago
  11. 880254e Issue #17767: test_locale now works with unittest test discovery. by Serhiy Storchaka · 11 years ago
  12. 26f9199 Close #18469: Replace PyDict_GetItemString() with _PyDict_GetItemId() in structseq.c by Victor Stinner · 11 years ago
  13. b8f602a Issue #18408: Mention changes in Misc/NEWS by Victor Stinner · 11 years ago
  14. 43d8195 Issue #18408: Handle PyArena_AddPyObject() failure in ast.c by Victor Stinner · 11 years ago
  15. d594f24 Issue #18408: Fix locale.localeconv(), handle PyDict_SetItemString() failure by Victor Stinner · 11 years ago
  16. 74a7fa6 Issue #18408: Fix PyErr_NormalizeException(), handle PyObject_IsSubclass() failure by Victor Stinner · 11 years ago
  17. bdf630c Issue #18408: Fix Python-ast.c: handle init_types() failure (ex: MemoryError) by Victor Stinner · 11 years ago
  18. 6684bdf Issue #18408: Fix typo in build_node_tree() of the parser module by Victor Stinner · 11 years ago
  19. 3997cfd Cleanup type_call() to ease debug by Victor Stinner · 11 years ago
  20. 1e53bba Issue #18408: handle PySys_GetObject() failure, raise a RuntimeError by Victor Stinner · 11 years ago
  21. 1b63493 Issue #18408: Py_ReprLeave() now saves/restores the current exception, by Victor Stinner · 11 years ago
  22. ac2a4fe Issue #18408: dict_new() now fails on new_keys_object() error by Victor Stinner · 11 years ago
  23. a9f61a5 Cleanup dictobject.c by Victor Stinner · 11 years ago
  24. fdcbab9 Issue #18408: Fix PyDict_GetItemString(), suppress PyUnicode_FromString() error by Victor Stinner · 11 years ago
  25. 32fd6ea Issue #18408: Fix list.extend(), handle list_resize() failure by Victor Stinner · 11 years ago
  26. d1f9942 Issue #18408: Fix cjkcodecs decoders, add a new MBERR_EXCEPTION constant to by Victor Stinner · 11 years ago
  27. 85c761d Issue #18408: Fix fileio_read() on _PyBytes_Resize() failure by Victor Stinner · 11 years ago
  28. 8361617 Issue #18448: Fix a typo in Tools/demo/eiffel.py. by Serhiy Storchaka · 11 years ago
  29. 6a98fe9 Issue #18448: Fix a typo in Tools/demo/eiffel.py. by Serhiy Storchaka · 11 years ago
  30. c9b3f6f Issue #18457: Fixed saving of formulas and complex numbers in Tools/demo/ss1.py. by Serhiy Storchaka · 11 years ago
  31. ec7ddd9 Issue #18457: Fixed saving of formulas and complex numbers in Tools/demo/ss1.py. by Serhiy Storchaka · 11 years ago
  32. 743e3d5 Merge: Closes #18475: add unittest.main() to test_email/test_inversions. by R David Murray · 11 years ago
  33. b5c9dfd Closes #18475: add unittest.main() to test_email/test_inversions. by R David Murray · 11 years ago
  34. a84a7cb Issue #17778: Fix test discovery for test_multiprocessing. (Patch by by Richard Oudkerk · 11 years ago
  35. d15642e Issue #17778: Fix test discovery for test_multiprocessing. (Patch by by Richard Oudkerk · 11 years ago
  36. e6f2175 Also remove a (broken) leaker test for the code removed in issue #18393. by Ronald Oussoren · 11 years ago
  37. cb2226c merge 3.3 by Benjamin Peterson · 11 years ago
  38. 265fba4 move declaration to top of block by Benjamin Peterson · 11 years ago
  39. fd9c020 merge 3.3 (closes #18470) by Benjamin Peterson · 11 years ago
  40. 2dbfd88 check the return value of new_string() (closes #18470) by Benjamin Peterson · 11 years ago
  41. eaaedcd Closes #18471: Fix typo in heapq documentation (reported by François Pinard). by Ned Deily · 11 years ago
  42. 676d7aa Issue #18471: Fix typo in heapq documentation (reported by François Pinard). by Ned Deily · 11 years ago
  43. 78e2c98 Issue #18408: Fix show_warning(), clear also the exception raised by by Victor Stinner · 11 years ago
  44. f243ee4 Issue #18408: add more assertions on PyErr_Occurred() in ceval.c to detect bugs by Victor Stinner · 11 years ago
  45. ceceaa0 Issue #18408: Fix _Py_DisplaySourceLine() by Victor Stinner · 11 years ago
  46. 7eab0d0 Issue #18408: Fix PyEval_EvalFrameEx() for MemoryError by Victor Stinner · 11 years ago
  47. 224a599 - Issue #18440: Clarify that `hash()` can truncate the value returned from an by Barry Warsaw · 11 years ago
  48. a4ced86 Issue #18408: random_seed() now raises a MemoryError on memory allocation by Victor Stinner · 11 years ago
  49. 775b2dd test_io: check_interrupted_write() now cancels the alarm if ZeroDivisionError by Victor Stinner · 11 years ago
  50. 53510cd Issue #18408: type_new() and PyType_FromSpecWithBases() now raise MemoryError by Victor Stinner · 11 years ago
  51. e699e5a Issue #18408: Don't check unicode consistency in _PyUnicode_HAS_UTF8_MEMORY() by Victor Stinner · 11 years ago
  52. 4883003 Closes #18464: fix typo in test name. by R David Murray · 11 years ago
  53. 3de5869 Issue #18408: PyObject_Call() now fails with an assertion error in debug mode by Victor Stinner · 11 years ago
  54. 33283ba Issue #18408: Fix CJK decoders, raise MemoryError on memory allocation failure by Victor Stinner · 11 years ago
  55. 54b2d2e Issue #18408: Fix pyexpat.ParserCreate() by Victor Stinner · 11 years ago
  56. 4958f71 - Issue #18440: Clarify that `hash()` can truncate the value returned from an by Barry Warsaw · 11 years ago
  57. 0fedb37 Issue #18393: Remove use of deprecated API on OSX by Ronald Oussoren · 11 years ago
  58. 7f93b36 Merge: Closes #18464: fix typo in test name. by R David Murray · 11 years ago
  59. 9ba6962 Issue #18344: Fix potential ref-leaks in _bufferedreader_read_all(). by Richard Oudkerk · 11 years ago
  60. 9ad51ec Issue #18344: Fix potential ref-leaks in _bufferedreader_read_all(). by Richard Oudkerk · 11 years ago
  61. 24c05bc Close issue 17482: don't overwrite __wrapped__ by Nick Coghlan · 11 years ago
  62. 6180a2f Issue #18449: Make Tools/demo/ss1.py work again on Python 3. Patch by by Serhiy Storchaka · 11 years ago
  63. 2670b9a Issue #18449: Make Tools/demo/ss1.py work again on Python 3. Patch by by Serhiy Storchaka · 11 years ago
  64. d57b268 Closes #18452: fix several "occurrence" typos (reported by Févry Thibault). by Ned Deily · 11 years ago
  65. 0995c47 Issue #18452: fix several "occurrence" typos (reported by Févry Thibault). by Ned Deily · 11 years ago
  66. 20f5e37 Issue #9893: remove an outdated mention of the Vim-related files. by Brett Cannon · 11 years ago
  67. 468bcaf merge by Raymond Hettinger · 11 years ago
  68. 889b92d Issue #18432: Fix unintended API change in the sched module by Raymond Hettinger · 11 years ago
  69. 90dea4c Tweak the deque struct by moving the least used fields (maxlen and weakref) to the end. by Raymond Hettinger · 11 years ago
  70. 840533b Use a do-while loop in the inner loop for rotate (m is always greater than zero). by Raymond Hettinger · 12 years ago
  71. 3959af9 Move the freeblock() call outside the main loop to speed-up and simplify the block re-use logic. by Raymond Hettinger · 12 years ago
  72. ae13ff1 Merge with 3.3 by Terry Jan Reedy · 12 years ago
  73. e6a1786 Issue #18365: convert buildbot errors to skips. by Terry Jan Reedy · 12 years ago
  74. 371f746 Merge with 3.3 by Terry Jan Reedy · 12 years ago
  75. 4f133e2 Issue #18279: Add tests for idlelib/RstripExtension.py. Original patch by by Terry Jan Reedy · 12 years ago
  76. 1424e7d Merge: #18437: fix comment typo. by R David Murray · 12 years ago
  77. 037f658 #18437: fix comment typo. by R David Murray · 12 years ago
  78. 4064b24 Merge with 3.3 by Terry Jan Reedy · 12 years ago
  79. 04ff038 Issue #18365: normalize whitespace by Terry Jan Reedy · 12 years ago
  80. 0c92553 Merge with 3.3 by Terry Jan Reedy · 12 years ago
  81. 21784da Issue #18365: Add mock Text class and test thereof versus tk.Text. by Terry Jan Reedy · 12 years ago
  82. d0a03ad #18389: Clarify that relpath does not access the file system. by R David Murray · 12 years ago
  83. ce10fab #18389: Clarify that relpath does not access the file system. by R David Murray · 12 years ago
  84. 11b38f1 Closes #18433: Merged documentation update from 3.3. by Vinay Sajip · 12 years ago
  85. 577d4ff Issue #18433: Clarified venv documentation. by Vinay Sajip · 12 years ago
  86. c1a9d30 Merged changes. by Vinay Sajip · 12 years ago
  87. ad6bb03 Issue #18434: Updated example script to tidy up resources. by Vinay Sajip · 12 years ago
  88. 8c7dde3 Merged upstream changes. by Vinay Sajip · 12 years ago
  89. 4969d46 Merged upstream changes. by Vinay Sajip · 12 years ago
  90. ad644e0 Closes #18435: Merged fix from 3.3. by Vinay Sajip · 12 years ago
  91. c07aa9e Issue #18435: Replaced simple attribute container class Context with types.SimpleNamespace. by Vinay Sajip · 12 years ago
  92. a03a7c7 Merge heads. by R David Murray · 12 years ago
  93. 8863bfe Merge heads. by R David Murray · 12 years ago
  94. 1f9d24a Merge: #18431: Decode encoded words in atoms in new email parser. by R David Murray · 12 years ago
  95. 923512f #18431: Decode encoded words in atoms in new email parser. by R David Murray · 12 years ago
  96. 62926ee Closes #18434: Merged documentation update from 3.3. by Vinay Sajip · 12 years ago
  97. 3c557f2 Issue #18434: Updated example script in venv docs to use setuptools rather than Distribute. by Vinay Sajip · 12 years ago
  98. ae95b4f Issue #17845: Clarify the message setup.py prints upon successfully by Brett Cannon · 12 years ago
  99. a79e4fb Issue #18342: Use the repr of a module name for ``from ... import by Brett Cannon · 12 years ago
  100. f0cb692 Issue #18415: Normalize what type of quotes are used with string by Brett Cannon · 12 years ago