1. 228b12e Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE wherever by Serhiy Storchaka · 8 years ago
  2. 60e6e96 Skip the test requiring ctypes if ctypes is unavailable. by Gregory P. Smith · 8 years ago
  3. 9358a6e Skip the test requiring ctypes if ctypes is unavailable. by Gregory P. Smith · 8 years ago
  4. 1fa08bc Skip the test requiring ctypes if ctypes is unavailable. by Gregory P. Smith · 8 years ago
  5. 773a8c4 typo fix, extra '.' on MacOS :) by Gregory P. Smith · 8 years ago
  6. 21a9b1d typo fix, extra '.' on MacOS :) by Gregory P. Smith · 8 years ago
  7. 21d333b typo fix, extra '.' :) by Gregory P. Smith · 8 years ago
  8. 4d5097a Issue #28556: Allow defining methods in NamedTuple class syntax (#362) (3.6->3.7) by Guido van Rossum · 8 years ago
  9. 744cd63 Issue #28556: Allow defining methods in NamedTuple class syntax (#362) (3.5->3.6) by Guido van Rossum · 8 years ago
  10. 95919c0 Issue #28556: Allow defining methods in NamedTuple class syntax (#362) by Guido van Rossum · 8 years ago
  11. 62f82a9 Issue #28556: various style fixes for typing.py (3.6->3.7) by Guido van Rossum · 8 years ago
  12. 0c5f47f Issue #28556: various style fixes for typing.py (3.5->3.6) by Guido van Rossum · 8 years ago
  13. d7adfe1 Issue #28556: various style fixes for typing.py by Guido van Rossum · 8 years ago
  14. 5c8706c Issue #29335: Fix subprocess.Popen.wait() when the child process has by Gregory P. Smith · 8 years ago
  15. 78034c8 Issue #29335: Fix subprocess.Popen.wait() when the child process has by Gregory P. Smith · 8 years ago
  16. 50e16e3 Issue #29335: Fix subprocess.Popen.wait() when the child process has by Gregory P. Smith · 8 years ago
  17. 2a404b6 Issue #28769: The result of PyUnicode_AsUTF8AndSize() and PyUnicode_AsUTF8() by Serhiy Storchaka · 8 years ago
  18. d528791 Issue #29290: Merge 3.6. by Xiang Zhang · 8 years ago
  19. b168118 Issue #29290: Merge 3.5. by Xiang Zhang · 8 years ago
  20. 7fe28ad Issue #29290: argparse help messages won't wrap at non-breaking spaces. by Xiang Zhang · 8 years ago
  21. 1dfaa6c Issue #29092: Merge 3.6. by Xiang Zhang · 8 years ago
  22. 4459e00 Issue #29092: Sync os.stat's doc and docstring on path type. by Xiang Zhang · 8 years ago
  23. d7d87ca Issue #29092: Sync os.stat's doc and docstring on path type. by Xiang Zhang · 8 years ago
  24. 19dea2c Issue #28735: Fixed the comparison of mock.MagickMock with mock.ANY. by Serhiy Storchaka · 8 years ago
  25. a203360 Issue #28735: Fixed the comparison of mock.MagickMock with mock.ANY. by Serhiy Storchaka · 8 years ago
  26. 362f058 Issue #28735: Fixed the comparison of mock.MagickMock with mock.ANY. by Serhiy Storchaka · 8 years ago
  27. 7cf8beb Issue #29331: Simplified argument parsing in sorted() and list.sort(). by Serhiy Storchaka · 8 years ago
  28. 5e65cd3 Issue #29282: Backed out changeset b33012ef1417 by Mark Dickinson · 8 years ago
  29. d1b230e Issue #29282: add fused multiply-add function, math.fma. by Mark Dickinson · 8 years ago
  30. 502efda Update Misc/NEWS and Misc/HISTORY from current 3.5 and 3.4 branches. by Ned Deily · 8 years ago
  31. b2df631 Update Misc/NEWS and Misc/HISTORY from current 3.5 and 3.4 branches. by Ned Deily · 8 years ago
  32. 88f5746 Issue #29316: merge 3.6 by Ned Deily · 8 years ago
  33. 67c1cb2 Issue #29316: Restore the provisional status of typing module and add by Ned Deily · 8 years ago
  34. 299dc23 Issue #29327: Fixed a crash when pass the iterable keyword argument to sorted(). by Serhiy Storchaka · 8 years ago
  35. 398ef5c Issue #29327: Fixed a crash when pass the iterable keyword argument to sorted(). by Serhiy Storchaka · 8 years ago
  36. aecbef4 merge by Raymond Hettinger · 8 years ago
  37. a57a8a3 Issue #29281: Fill-in a missing versionchanged entry by Raymond Hettinger · 8 years ago
  38. f816023 Issue #29292: Merge 3.6. by Xiang Zhang · 8 years ago
  39. 346454c Issue #29292: Merge 3.5. by Xiang Zhang · 8 years ago
  40. 6ad85bf Issue #29292: Update outdated doc of PyEval_EvalCodeEx. by Xiang Zhang · 8 years ago
  41. 3c75d8a Null merge from 3.6. by Larry Hastings · 8 years ago
  42. dc4dbda Null merge from 3.5. by Larry Hastings · 8 years ago
  43. 57720e5 Fix incorrect patchlevel information for 3.5.3+. by Larry Hastings · 8 years ago
  44. a70eaf2 Issue #29289: Argument Clinic generates reasonable name for the parameter "default". by Serhiy Storchaka · 8 years ago
  45. 48088ee Issue #29311: Argument Clinic generates reasonable name for the parameter "default". by Serhiy Storchaka · 8 years ago
  46. 41baebd Issue #20186: Converted builtins enumerate() and reversed() to Argument Clinic. by Serhiy Storchaka · 8 years ago
  47. c9ea933 Issue #20186: Converted the math module to Argument Clinic. Patch by Tal Einat. by Serhiy Storchaka · 8 years ago
  48. b813a0e Issue #20186: Converted the _operator module to Argument Clinic. by Serhiy Storchaka · 8 years ago
  49. bd584f1 Issue #29296: convert print() to METH_FASTCALL by INADA Naoki · 8 years ago
  50. 91f0d4a Add a note explaining why dict_update() doesn't use METH_FASTCALL by Victor Stinner · 8 years ago
  51. 7dc6a5f dict.get() and dict.setdefault() now use AC by Victor Stinner · 8 years ago
  52. 38a49be Issue #29198: add AsyncGenerator (Jelle Zijlstra) (3.5->3.6) by Guido van Rossum · 8 years ago
  53. e9ed560 Issue #29198: add AsyncGenerator (Jelle Zijlstra) by Guido van Rossum · 8 years ago
  54. 06d3439 _PyStack_AsDict() now checks kwnames != NULL by Victor Stinner · 8 years ago
  55. c75340a Issue #29198: add AsyncGenerator (Jelle Zijlstra) (3.6->3.7) by Guido van Rossum · 8 years ago
  56. fa025f1 Update and enhance python-gdb.py by Victor Stinner · 8 years ago
  57. e69f0e6 Issue #28556: allow default values in class form of NamedTuple -- Jelle Zijlstra (3.6->3.7) by Guido van Rossum · 8 years ago
  58. 49f08a2 Issue #28556: allow default values in class form of NamedTuple -- Jelle Zijlstra (3.5->3.6) by Guido van Rossum · 8 years ago
  59. 3c268be Issue #28556: allow default values in class form of NamedTuple -- Jelle Zijlstra by Guido van Rossum · 8 years ago
  60. 0a2e468 Cleanup _PyMethodDef_RawFastCallDict() by Victor Stinner · 8 years ago
  61. a8cb515 Rephrase !PyErr_Occurred() comment: may=>can by Victor Stinner · 8 years ago
  62. 98ccba8 _PyObject_FastCallKeywords() now checks !PyErr_Occurred() by Victor Stinner · 8 years ago
  63. c89ef82 PyCFunction_Call() now calls _PyCFunction_FastCallDict() by Victor Stinner · 8 years ago
  64. 250e4b0 Fix _PyMethodDef_RawFastCallDict() argument parsing by Victor Stinner · 8 years ago
  65. 7612f1e Fix Python 2.6 support in python-gdb.py by Victor Stinner · 8 years ago
  66. 9722d7f Issue 29274: Merge doc fixes from 3.6 by Martin Panter · 8 years ago
  67. 4710935 Issue 29274: Merge doc fixes from 3.5 by Martin Panter · 8 years ago
  68. 37f183d Issue #29274: tests cases → test cases by Martin Panter · 8 years ago
  69. 2a1b676 _PyObject_FastCallKeywords() now checks the result by Victor Stinner · 8 years ago
  70. c525723 Optimize methoddescr_call(): avoid temporary PyCFunction by Victor Stinner · 8 years ago
  71. 35ecebe Remove unused func parameter of _PyStack_UnpackDict() by Victor Stinner · 8 years ago
  72. 52f2959 Issue #28556: merge 5 more typing changes from upstream (#340, #344, #348, #349, #350) (3.6->3.7) by Guido van Rossum · 8 years ago
  73. 043a8bc Issue #28556: merge 5 more typing changes from upstream (#340, #344, #348, #349, #350) (3.5->3.6) by Guido van Rossum · 8 years ago
  74. 83ec302 Issue #28556: merge 5 more typing changes from upstream (#340, #344, #348, #349, #350) by Guido van Rossum · 8 years ago
  75. 8128d5a Address a minor Coverity warning re: unchecked PyArg_ParseTuple calls by Gregory P. Smith · 8 years ago
  76. 5d37d63 Merge from 3.5. by Larry Hastings · 8 years ago
  77. e741e4f Merge from 3.4. by Larry Hastings · 8 years ago
  78. 09e4ce5 Merge 3.5.3 release head with main 3.5 branch. by Larry Hastings · 8 years ago
  79. c620f20 Post-release updates for 3.5.3. by Larry Hastings · 8 years ago
  80. a52b0a4 Post-release updates for 3.4.6. by Larry Hastings · 8 years ago
  81. e12c313 merge by Raymond Hettinger · 8 years ago
  82. 8049052 Issue #29011: Fix an important omission by adding Deque to the typing module. by Raymond Hettinger · 8 years ago
  83. aeaf294 _hashopenssl uses METH_FASTCALL by Victor Stinner · 8 years ago
  84. 5a60eca sorted() uses METH_FASTCALL by Victor Stinner · 8 years ago
  85. fda6d0a next() uses FASTCALL by Victor Stinner · 8 years ago
  86. 84b388b getattr() uses METH_FASTCALL by Victor Stinner · 8 years ago
  87. f672fc7 Null merge by Serhiy Storchaka · 8 years ago
  88. ea32cb1 Merge from 3.6. by Larry Hastings · 8 years ago
  89. 1741441 Issue #29029: Speed up processing positional arguments in by Serhiy Storchaka · 8 years ago
  90. f6b96c7 merge by Raymond Hettinger · 8 years ago
  91. b05cbac Convert some OrderedDict methods to Argument Clinic by Victor Stinner · 8 years ago
  92. 0c4a828 Run Argument Clinic: METH_VARARGS=>METH_FASTCALL by Victor Stinner · 8 years ago
  93. 093119e Argument Clinic: Use METH_FASTCALL for boring positionals by Victor Stinner · 8 years ago
  94. fe54dd8 Add _PyArg_UnpackStack() function helper by Victor Stinner · 8 years ago
  95. 259f0e4 Run Argument Clinic: METH_VARARGS=>METH_FASTCALL by Victor Stinner · 8 years ago
  96. 0c8c389 Argument Clinic: Use METH_FASTCALL for positionals by Victor Stinner · 8 years ago
  97. 998c209 _PyStack_UnpackDict() now returns -1 on error by Victor Stinner · 8 years ago
  98. 29d39cc Add _PyArg_NoStackKeywords() helper function by Victor Stinner · 8 years ago
  99. 6518a93 Add _PyArg_ParseStack() helper function by Victor Stinner · 8 years ago
  100. 3e1fad6 Rename _PyArg_ParseStack to _PyArg_ParseStackAndKeywords by Victor Stinner · 8 years ago