1. bd143c3 Issue #18627: Fix typo noticed by Vajrasky Kok. by Ned Deily · 11 years ago
  2. b5dd6d2 Issue #17557: Fix os.getgroups() to work with the modified behavior of by Ned Deily · 11 years ago
  3. 2e3e593 Issue #17899: Fix rare file descriptor leak in os.listdir(). by Larry Hastings · 11 years ago
  4. 39668f5 Issue #18589: fix hyperlinking of type slots (tp_*) by Antoine Pitrou · 11 years ago
  5. b3c8724 Initialize utime with 0. It fixes a couple of compiler warnung: by Christian Heimes · 11 years ago
  6. 294b93d merge by Christian Heimes · 11 years ago
  7. 5e4d372 Silence warning about set but unused variable inside compile_atom() in non-debug builds by Christian Heimes · 11 years ago
  8. 778cba7 Issue #18573: More copy-paste fixes to assertWarns entry. by Terry Jan Reedy · 11 years ago
  9. cdc75d9 Issue #15494: Install new test/support directory. by Ned Deily · 11 years ago
  10. 1c4e443 #16273: Fix tutorial discussion of seek/tell (opaque text-mode values). by R David Murray · 11 years ago
  11. 96433f8 #18601: fix error made when difflib example was converted to use 'with'. by R David Murray · 11 years ago
  12. 11bfd32 #18584: s/testcleanup/testsetup/ until we switch to Sphinx 1.1. by R David Murray · 11 years ago
  13. 3ab7b0a Simplify example of PyErr_Fetch() use by Antoine Pitrou · 11 years ago
  14. 4ebc929 Add simple test for resource.getpagesize() by Christian Heimes · 11 years ago
  15. 65aa573 Add more tests for hashlib and hash object attributes by Christian Heimes · 11 years ago
  16. 4fec431 Issue #18599: Fix name attribute of _sha1.sha1() object. It now returns by Christian Heimes · 11 years ago
  17. 25f043b Issue #18593: fix typo in comment by Eli Bendersky · 11 years ago
  18. 4bd3129 Make all idle test case names end with 'Test'. by Terry Jan Reedy · 11 years ago
  19. fdfb005 #18584: make doctest examples in email documentation pass. by R David Murray · 11 years ago
  20. c06c0ae Third attempt to fix #15415 on Windows by Nick Coghlan · 11 years ago
  21. 2f253e8 Attempt to fix #15415 on Windows by Nick Coghlan · 11 years ago
  22. 015b453 Update gui section of idle test README. by Terry Jan Reedy · 11 years ago
  23. a9d16c8 Issue #18441: Remove check from test_text.py in 3.3,4 (already done in 2.7). by Terry Jan Reedy · 11 years ago
  24. 5517596 Close #15415: Factor out temp dir helpers to test.support by Nick Coghlan · 11 years ago
  25. 69e3bda Issue #15494: test.support is now a package rather than a module by Nick Coghlan · 11 years ago
  26. 725d9dd Issue #18441: Make test.support.requires('gui') skip when it should. by Terry Jan Reedy · 11 years ago
  27. ae6d05b doc of PYTHONFAULTHANDLER env var: add missing "versionadded" tag by Victor Stinner · 11 years ago
  28. d979c72 add a test for issue #17669 (closes #18565) by Benjamin Peterson · 11 years ago
  29. 9eda66d Issue #18573: Complete copy-paste from assertRaises entry to assertWarns entry. by Terry Jan Reedy · 11 years ago
  30. da2cbb4 Issue #15893: Remove dead code by Victor Stinner · 11 years ago
  31. 36577e4 Issue #15893: frozenmain.c now handles PyMem_Malloc() failure by Victor Stinner · 11 years ago
  32. 70c94e7 Issue #18552: Check return value of PyArena_AddPyObject() in obj2ast_object(). by Christian Heimes · 11 years ago
  33. 1acc129 Parser/asdl_c.py: use Py_CLEAR() by Victor Stinner · 11 years ago
  34. ce72e1c According to the PEP 7, C code must "use 4-space indents" by Victor Stinner · 11 years ago
  35. 6ca8a05 Issue #18561: Skip name in ctypes' _build_callargs() if name is NULL. CID 486199 by Christian Heimes · 11 years ago
  36. 704e2d3 Issue #18560: Fix potential NULL pointer dereference in sum() by Christian Heimes · 11 years ago
  37. 9ee5c37 Issue #18559: Fix NULL pointer dereference error in _pickle module by Christian Heimes · 11 years ago
  38. 66eda26 Handle yet another potential failure in testcapi CID 1058280 by Christian Heimes · 11 years ago
  39. 5962bef Check return value of PyLong_FromLong(X509_get_version()). It might be NULL if by Christian Heimes · 11 years ago
  40. ec2309b remove surplus and wrong Py_DECREF() introduced in 33891989c9cf by Christian Heimes · 11 years ago
  41. 3205e74 Fix declaration-after-statement of d49f65ff4f3c by Christian Heimes · 11 years ago
  42. 7e13802 Fix memory leaks and add checks for failing malloc() calls to testcapi module by Christian Heimes · 11 years ago
  43. ff369a5 Fix possible NULL pointer dereferences in testcapi module by Christian Heimes · 11 years ago
  44. a956e64 Fix possible NULL pointer dereference in PyCurses_Start_Color() CID 1058276 by Christian Heimes · 11 years ago
  45. 845f784 Issue #18556: Check the return value for PyUnicode_AsWideChar() in by Brett Cannon · 11 years ago
  46. b76b1b1 #15130: remove repeat of abstract paragraph from socket howto body. by R David Murray · 11 years ago
  47. 271ade8 #18503: small cleanups in test_email. by R David Murray · 11 years ago
  48. 9228837 Issue #18549: Eliminate dead code in socket_ntohl(). CID 982369 by Christian Heimes · 11 years ago
  49. b042daa #14853: remove test that was making too many assumptions about stdin. Patch by Elena Oat. by Ezio Melotti · 11 years ago
  50. 61b0c67 #16937: document that stdin is always buffered, even when -u is used. Patch by Elena Oat. by Ezio Melotti · 11 years ago
  51. 72f562f Fix potential NULL pointer dereferencing in ast module CID 719690 by Christian Heimes · 11 years ago
  52. a92fbe6 Issue #18541: simplified LoggerAdapter example. by Vinay Sajip · 11 years ago
  53. 7d28b6b return NULL here by Benjamin Peterson · 11 years ago
  54. fa6bc29 Issue #17944: test_zipfile now discoverable and uses subclassing to by Serhiy Storchaka · 11 years ago
  55. 1eb0cb1 Some compilers complain about 'control reaches end of non-void function' by Christian Heimes · 11 years ago
  56. 60a6067 Issue #15905: Fix theoretical buffer overflow in handling of sys.argv[0], by Christian Heimes · 11 years ago
  57. 37c916d merge by Christian Heimes · 11 years ago
  58. 53d2dc4 Add sanity check to PyGrammar_LabelRepr() in order to catch invalid tokens when debugging by Christian Heimes · 11 years ago
  59. 6e2711b Issue #18439: Make patchcheck work on Windows for ACKS, NEWS. by Terry Jan Reedy · 11 years ago
  60. 43d82df Now all error paths of _freeze_importlib use 'goto error' and the error label cleans up all used resources. by Christian Heimes · 11 years ago
  61. 0f9b7d3 fix spacing by Benjamin Peterson · 11 years ago
  62. 04b01dc let's not return NULL from functions that should return ints by Benjamin Peterson · 11 years ago
  63. 8c4c1f6 Issue #18514: Fix unreachable Py_DECREF() call in PyCData_FromBaseObj() by Christian Heimes · 11 years ago
  64. 96f628f Fix reference and memory leaks in _freeze_importlib by Christian Heimes · 11 years ago
  65. 1f34729 Check return value of lseek() in _Py_DisplaySourceLine(). by Christian Heimes · 11 years ago
  66. c731bbe Propagate error when PyByteArray_Resize() fails in bytearray_translate() by Christian Heimes · 11 years ago
  67. 8e09084 merge by Christian Heimes · 11 years ago
  68. 8c077bc Check return value of PyObject_AsFileDescriptor() in _Py_DisplaySourceLine() for error by Christian Heimes · 11 years ago
  69. 8e8b9ba Issue #17532: Prevent exception when changing key sets if Options menu is empty. by Ned Deily · 11 years ago
  70. a6404ad Check return value of PyEval_GetGlobals() for NULL CID 486814 by Christian Heimes · 11 years ago
  71. 09994a9 Check return value of flush_character_buffer() CID 486663 by Christian Heimes · 11 years ago
  72. 27c4c3e Check return value of fstat() in _PyImport_GetDynLoadFunc() CID 486250 by Christian Heimes · 11 years ago
  73. 58ceecf Issue #18513: Add workaround for OS X 10.8 cexp bug that leads to wrong cmath.rect(0.0,-0.0) results. by Mark Dickinson · 11 years ago
  74. 7ed4294 Add missing check of PyDict_Update()'s return value in _elementtree.c CID 719637 by Christian Heimes · 11 years ago
  75. 97cb67b Add missing check of PyDict_SetItem()'s return value CID 486659 by Christian Heimes · 11 years ago
  76. 26532f7 Check return value of PyType_Ready(&EncodingMapType) CID 486654 by Christian Heimes · 11 years ago
  77. 09ca794 Add missing check of PyDict_SetItem()'s return value in _PyImport_FindExtensionObject() by Christian Heimes · 11 years ago
  78. 0bd447f Add missing check of PyDict_SetItem()'s return value in PyEval_EvalCodeEx() by Christian Heimes · 11 years ago
  79. 14f5ee0 Prevent dangling threads/process warning for test_multiprocessing. by Richard Oudkerk · 11 years ago
  80. 138d080 #18480: Add missing PyType_Ready call to _elementtree extension by Ronald Oussoren · 11 years ago
  81. 45e9039 Fix posix_chflags(): return_value was uninitialized when follow_symlinks=False by Victor Stinner · 11 years ago
  82. c406a12 Issue #18266: test_largefile now works with unittest test discovery and by Serhiy Storchaka · 11 years ago
  83. 880254e Issue #17767: test_locale now works with unittest test discovery. by Serhiy Storchaka · 11 years ago
  84. 6a98fe9 Issue #18448: Fix a typo in Tools/demo/eiffel.py. by Serhiy Storchaka · 11 years ago
  85. ec7ddd9 Issue #18457: Fixed saving of formulas and complex numbers in Tools/demo/ss1.py. by Serhiy Storchaka · 11 years ago
  86. b5c9dfd Closes #18475: add unittest.main() to test_email/test_inversions. by R David Murray · 11 years ago
  87. d15642e Issue #17778: Fix test discovery for test_multiprocessing. (Patch by by Richard Oudkerk · 11 years ago
  88. 265fba4 move declaration to top of block by Benjamin Peterson · 11 years ago
  89. 2dbfd88 check the return value of new_string() (closes #18470) by Benjamin Peterson · 11 years ago
  90. 676d7aa Issue #18471: Fix typo in heapq documentation (reported by François Pinard). by Ned Deily · 11 years ago
  91. 224a599 - Issue #18440: Clarify that `hash()` can truncate the value returned from an by Barry Warsaw · 11 years ago
  92. 4883003 Closes #18464: fix typo in test name. by R David Murray · 11 years ago
  93. 9ad51ec Issue #18344: Fix potential ref-leaks in _bufferedreader_read_all(). by Richard Oudkerk · 11 years ago
  94. 2670b9a Issue #18449: Make Tools/demo/ss1.py work again on Python 3. Patch by by Serhiy Storchaka · 11 years ago
  95. 0995c47 Issue #18452: fix several "occurrence" typos (reported by Févry Thibault). by Ned Deily · 11 years ago
  96. 889b92d Issue #18432: Fix unintended API change in the sched module by Raymond Hettinger · 11 years ago
  97. e6a1786 Issue #18365: convert buildbot errors to skips. by Terry Jan Reedy · 11 years ago
  98. 4f133e2 Issue #18279: Add tests for idlelib/RstripExtension.py. Original patch by by Terry Jan Reedy · 11 years ago
  99. 037f658 #18437: fix comment typo. by R David Murray · 11 years ago
  100. 04ff038 Issue #18365: normalize whitespace by Terry Jan Reedy · 11 years ago