1. d7d266c Merge from 3.6. by Serhiy Storchaka · 8 years ago
  2. 427f10b Merge from 3.5. by Serhiy Storchaka · 8 years ago
  3. 606ab86 Change order of io.UnsupportedOperation base classes. by Serhiy Storchaka · 8 years ago
  4. f17c3de Use _PyObject_CallNoArg() by Victor Stinner · 8 years ago
  5. a5ed5f0 Use _PyObject_CallNoArg() by Victor Stinner · 8 years ago
  6. 408bfa6 Issue #28152: Fix -Wunreachable-code warning on clang by Victor Stinner · 8 years ago
  7. 44d9bea Issue #28152: Fix -Wunreachable-code warning on clang by Victor Stinner · 8 years ago
  8. 9a2329f Issue #28152: Fix -Wunreachable-code warnings on Clang by Victor Stinner · 8 years ago
  9. 7bfb42d Issue #28858: Remove _PyObject_CallArg1() macro by Victor Stinner · 8 years ago
  10. de4ae3d Backed out changeset b9c9691c72c5 by Victor Stinner · 8 years ago
  11. edfe886 Merge 3.6 (issue #28843) by Yury Selivanov · 8 years ago
  12. c2c8fe1 Issue #28843: Fix asyncio C Task to handle exceptions __traceback__. by Yury Selivanov · 8 years ago
  13. 4778eab Replace PyObject_CallFunction() with fastcall by Victor Stinner · 8 years ago
  14. 27580c1 Replace PyObject_CallFunctionObjArgs() with fastcall by Victor Stinner · 8 years ago
  15. 11dd604 Add TCP_CONGESTION and TCP_USER_TIMEOUT by Victor Stinner · 8 years ago
  16. 4f8dc3d Add TCP_CONGESTION and TCP_USER_TIMEOUT by Victor Stinner · 8 years ago
  17. 1018fad Issue #28792: Remove aliases from _bisect by Victor Stinner · 8 years ago
  18. 726a57d Issue #28765: _sre.compile() now checks the type of groupindex and indexgroup by Victor Stinner · 8 years ago
  19. 0b87b69 Merge 3.6 by Victor Stinner · 8 years ago
  20. bcf4dcc Issue #28727: Optimize pattern_richcompare() for a==a by Victor Stinner · 8 years ago
  21. e670b2d Issue #28727: Fix typo in pattern_richcompare() by Victor Stinner · 8 years ago
  22. e425bd9 Issue #28752: Restored the __reduce__() methods of datetime objects. by Serhiy Storchaka · 8 years ago
  23. 546ce65 Issue #28752: Restored the __reduce__() methods of datetime objects. by Serhiy Storchaka · 8 years ago
  24. 065507f Merge 3.6 by Victor Stinner · 8 years ago
  25. b44fb12 Implement rich comparison for _sre.SRE_Pattern by Victor Stinner · 8 years ago
  26. 7fc69f2 Issue #28532: Show sys.version when -V option is supplied twice by INADA Naoki · 8 years ago
  27. 0e175a6 Issue #28532: Show sys.version when -V option is supplied twice by INADA Naoki · 8 years ago
  28. 7d6e923 Issue #25659: Merge ctypes fix from 3.6 by Martin Panter · 8 years ago
  29. a57890e Issue #10656: Merge AIX build fix from 3.6 by Martin Panter · 8 years ago
  30. 04b3575 Issue #25659: Merge ctypes fix from 3.5 by Martin Panter · 8 years ago
  31. e45df0a Issue #10656: Merge AIX build fix from 3.5 by Martin Panter · 8 years ago
  32. 460bd0d Issue #19569: Compiler warnings are now emitted if use most of deprecated by Serhiy Storchaka · 8 years ago
  33. 85b0f5b Added the const qualifier to char* variables that refer to readonly internal by Serhiy Storchaka · 8 years ago
  34. 6e723d2 Issue #25659: Change assert to TypeError in from_buffer/_copy() by Martin Panter · 8 years ago
  35. 395733d Issue #10656: Fix out-of-tree building on AIX by Martin Panter · 8 years ago
  36. a98c4a9 Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringAndSize by Serhiy Storchaka · 8 years ago
  37. 0651583 Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringAndSize by Serhiy Storchaka · 8 years ago
  38. f6f1591 Issue #28715: Added error checks for PyUnicode_AsUTF8(). by Serhiy Storchaka · 8 years ago
  39. e209739 Issue #28715: Added error checks for PyUnicode_AsUTF8(). by Serhiy Storchaka · 8 years ago
  40. 144f77a Issue #28715: Added error checks for PyUnicode_AsUTF8(). by Serhiy Storchaka · 8 years ago
  41. 83aeb3c Issue #28732: Raise ValueError when argv[0] is empty by Steve Dower · 8 years ago
  42. bce2626 Issue #28732: Raise ValueError when argv[0] is empty by Steve Dower · 8 years ago
  43. 93ff872 Issue #28732: Raise ValueError when argv[0] is empty. by Steve Dower · 8 years ago
  44. 6f33e29 Issue #28732: Raise ValueError when os.spawn*() is passed an empty tuple of arguments by Steve Dower · 8 years ago
  45. 859fd7b Issue #28732: Raise ValueError when os.spawn*() is passed an empty tuple of arguments by Steve Dower · 8 years ago
  46. 1325ee0 Merge from 3.6 by Steve Dower · 8 years ago
  47. c363061 Merge from 3.5 and fix a few other functions missing IPH handling. by Steve Dower · 8 years ago
  48. 11f4326 Issue #28732: Fix crash in os.spawnv() with no elements in args by Steve Dower · 8 years ago
  49. 1a73bf3 Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualToASCIIString. by Serhiy Storchaka · 8 years ago
  50. 3b73ea1 Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualToASCIIString. by Serhiy Storchaka · 8 years ago
  51. f4934ea Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualToASCIIString. by Serhiy Storchaka · 8 years ago
  52. 2294f83 merge 3.6 by Benjamin Peterson · 8 years ago
  53. 996fc1f correctly emulate error semantics of gen.throw in FutureIter_throw by Benjamin Peterson · 8 years ago
  54. 5e17ad9 Merge AIX fixes from 3.6 by Martin Panter · 8 years ago
  55. f8cebad Merge AIX fixes from 3.5 into 3.6 by Martin Panter · 8 years ago
  56. c9e08d8 Issue #28000: Fix gethostbyname_r() usage on AIX with _LINUX_SOURCE_COMPAT by Martin Panter · 8 years ago
  57. ac40c6c Issue #19398: Extra slash no longer added to sys.path components in case of by Serhiy Storchaka · 8 years ago
  58. a27c064 Issue #19398: Extra slash no longer added to sys.path components in case of by Serhiy Storchaka · 8 years ago
  59. 62e32d6 Issue #19398: Extra slash no longer added to sys.path components in case of by Serhiy Storchaka · 8 years ago
  60. 3e05a9c Merge 3.6 (issue #28653) by Yury Selivanov · 8 years ago
  61. 0a66a1c Merge 3.6 (issue #28653) by Yury Selivanov · 8 years ago
  62. 46a02db Issue #28653: Fix a refleak in functools.lru_cache. by Yury Selivanov · 8 years ago
  63. bff8f64 Merge 3.6 (issue #26081) by Yury Selivanov · 8 years ago
  64. 692796a Issue #26081: Fix refleak in _asyncio.Future.__iter__().throw. by Yury Selivanov · 8 years ago
  65. b74fecc Issue #28585: Restored docstring of os._isdir(). by Serhiy Storchaka · 8 years ago
  66. 852cc33 Issue #28585: Restored docstring of os._isdir(). by Serhiy Storchaka · 8 years ago
  67. 579f038 Issue #28585: Restored docstring of os._isdir(). by Serhiy Storchaka · 8 years ago
  68. 85bcf37 Issue #23996: Added _PyGen_SetStopIterationValue for safe raising by Serhiy Storchaka · 8 years ago
  69. 60e49aa Issue #23996: Added _PyGen_SetStopIterationValue for safe raising by Serhiy Storchaka · 8 years ago
  70. f0b311b Issue #28123: _PyDict_GetItem_KnownHash() now can raise an exception as by Serhiy Storchaka · 8 years ago
  71. 5f548a2 Issue #28387: Fixed possible crash in _io.TextIOWrapper deallocator when by Serhiy Storchaka · 8 years ago
  72. a7c972e Issue #28387: Fixed possible crash in _io.TextIOWrapper deallocator when by Serhiy Storchaka · 8 years ago
  73. 88b2219 Issue #27517: LZMA compressor and decompressor no longer raise exceptions if by Serhiy Storchaka · 8 years ago
  74. 04f17f1 Issue #27517: LZMA compressor and decompressor no longer raise exceptions if by Serhiy Storchaka · 8 years ago
  75. a0d9c68 Issue #28549: Fixed segfault in curses's addch() with ncurses6. by Serhiy Storchaka · 8 years ago
  76. 0bcd89b Issue #28549: Fixed segfault in curses's addch() with ncurses6. by Serhiy Storchaka · 8 years ago
  77. 0eacef3 Issue #28444: Merge with 3.5. by Xavier de Gaye · 8 years ago
  78. 84968b7 Issue #28444: Fix missing extensions modules when cross compiling. by Xavier de Gaye · 8 years ago
  79. 49d02d1 Issue #28586: Converted os.scandir() to Argument Clinic. by Serhiy Storchaka · 8 years ago
  80. 04230c4 Issue #28123: _PyDict_GetItem_KnownHash() now can raise an exception as by Serhiy Storchaka · 8 years ago
  81. d63f1f7 Issue #28387: Fixed possible crash in _io.TextIOWrapper deallocator when by Serhiy Storchaka · 8 years ago
  82. ecf40c1 Issue #27517: LZMA compressor and decompressor no longer raise exceptions if by Serhiy Storchaka · 8 years ago
  83. e1ac09d Issue #28549: Fixed segfault in curses's addch() with ncurses6. by Serhiy Storchaka · 8 years ago
  84. 0af10ac Issue #28444: Merge with 3.6. by Xavier de Gaye · 8 years ago
  85. 43a5c1c Merge 3.6 by Victor Stinner · 8 years ago
  86. f94d1ee Issue #28544: Fix inefficient call to _PyObject_CallMethodId() by Victor Stinner · 8 years ago
  87. f0bbee6 Merge 3.6 (issue #28544) by Yury Selivanov · 8 years ago
  88. 684ef2c Issue #28544: Pass `PyObject*` to _PyDict_Pop, not `PyDictObject*` by Yury Selivanov · 8 years ago
  89. 1e03d8c Merge 3.6 by Victor Stinner · 8 years ago
  90. 1aea8fb Issue #28544: Fix _asynciomodule.c on Windows by Victor Stinner · 8 years ago
  91. 29d3cbf Merge 3.6 (issue #28544) by Yury Selivanov · 8 years ago
  92. a0c1ba6 Issue #28544: Implement asyncio.Task in C. by Yury Selivanov · 8 years ago
  93. 3809c25 Fixed possible NULL decrefing. by Serhiy Storchaka · 8 years ago
  94. 8a8ebc9 Fixed possible NULL decrefing. by Serhiy Storchaka · 8 years ago
  95. 3ec5f42 Fixed possible NULL decrefing. by Serhiy Storchaka · 8 years ago
  96. 9e7d6a9 Issue #28526: Use PyUnicode_AsEncodedString() instead of by Serhiy Storchaka · 8 years ago
  97. 802426f Issue #28526: Use PyUnicode_AsEncodedString() instead of by Serhiy Storchaka · 8 years ago
  98. b29cee4 Issue #28526: Use PyUnicode_AsEncodedString() instead of by Serhiy Storchaka · 8 years ago
  99. 12a98e8 Issue #28430: Fix iterator of C implemented asyncio.Future doesn't by INADA Naoki · 8 years ago
  100. 74c1753 Issue #28430: Fix iterator of C implemented asyncio.Future doesn't by INADA Naoki · 8 years ago