1. a8cb515 Rephrase !PyErr_Occurred() comment: may=>can by Victor Stinner · 9 years ago
  2. 015bce6 Issue #26110: Add document for LOAD_METHOD and CALL_METHOD opcode. by INADA Naoki · 9 years ago
  3. 231d1f3 _PyEval_EvalCodeWithName(): remove redundant check by Victor Stinner · 9 years ago
  4. 415c510 Inline call_function() by Victor Stinner · 9 years ago
  5. 865a0f6 Optimize _PyFunction_FastCallDict() when kwargs is {} by Victor Stinner · 9 years ago
  6. 9c15776 Issue #29049: Remove unnecessary Py_DECREF by INADA Naoki · 9 years ago
  7. 6a3cedf Issue #29049: Fix refleak introduced by f5eb0c4f5d37. by INADA Naoki · 9 years ago
  8. 5a625d0 Issue #29049: Call _PyObject_GC_TRACK() lazily when calling Python function. by INADA Naoki · 9 years ago
  9. 5bb8b91 Issue #18896: Python function can now have more than 255 parameters. by Serhiy Storchaka · 9 years ago
  10. 5ab81d7 Issue #28959: Added private macro PyDict_GET_SIZE for retrieving the size of dict. by Serhiy Storchaka · 9 years ago
  11. f239213 Issue #26110: Add LOAD_METHOD/CALL_METHOD opcodes. by Yury Selivanov · 9 years ago
  12. 59a7327 Backed out changeset 99c34e47348b by Victor Stinner · 9 years ago
  13. 0ca246c Inline PyEval_EvalFrameEx() in callers by Victor Stinner · 9 years ago
  14. f17c3de Use _PyObject_CallNoArg() by Victor Stinner · 9 years ago
  15. a5ed5f0 Use _PyObject_CallNoArg() by Victor Stinner · 9 years ago
  16. 2d0eb65 Uniformize argument names of "call" functions by Victor Stinner · 9 years ago
  17. de4ae3d Backed out changeset b9c9691c72c5 by Victor Stinner · 9 years ago
  18. 842cfff WITH_CLEANUP_START uses fastcall by Victor Stinner · 9 years ago
  19. 27580c1 Replace PyObject_CallFunctionObjArgs() with fastcall by Victor Stinner · 9 years ago
  20. b69ee8c call_function(): document PyMethod optimization by Victor Stinner · 9 years ago
  21. 048afd9 Remove CALL_PROFILE special build by Victor Stinner · 9 years ago
  22. ed6de73 Merge 3.6 by Victor Stinner · 9 years ago
  23. f7d199f Fix _PyGen_yf() by Victor Stinner · 9 years ago
  24. 3fa28fd merge by Raymond Hettinger · 9 years ago
  25. 64e2f9a Issue #27100: Fix ref leak by Raymond Hettinger · 9 years ago
  26. 9af740b merge by Raymond Hettinger · 9 years ago
  27. a3fec15 Issue #27100: With statement reports missing __enter__ before __exit__. (Contributed by Jonathan Ellington.) by Raymond Hettinger · 9 years ago
  28. 85b0f5b Added the const qualifier to char* variables that refer to readonly internal by Serhiy Storchaka · 9 years ago
  29. a98c4a9 Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringAndSize by Serhiy Storchaka · 9 years ago
  30. 0651583 Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringAndSize by Serhiy Storchaka · 9 years ago
  31. c32f9db Issue #28665: Use macro form of PyCell_GET/SET by Raymond Hettinger · 9 years ago
  32. b2b1543 merge by Raymond Hettinger · 9 years ago
  33. 1352712 Issue #28665: Harmonize STORE_DEREF with STORE_FAST and LOAD_DEREF giving a 40% speedup. by Raymond Hettinger · 9 years ago
  34. c6944e7 Issue #28618: Make hot functions using __attribute__((hot)) by Victor Stinner · 9 years ago
  35. 818b5cc Fixed possible abort in ceval loop if _PyUnicode_FromId() fails. by Serhiy Storchaka · 9 years ago
  36. 4678b2f Fixed possible abort in ceval loop if _PyUnicode_FromId() fails. by Serhiy Storchaka · 9 years ago
  37. 70b72f0 Fixed possible abort in ceval loop if _PyUnicode_FromId() fails. by Serhiy Storchaka · 9 years ago
  38. 0ee446c Merge 3.6 (issue #27243) by Yury Selivanov · 9 years ago
  39. 2edd8a1 Issue #27243: Change PendingDeprecationWarning -> DeprecationWarning. by Yury Selivanov · 9 years ago
  40. d65f42a Issue #21955: Please don't try to optimize int+int by Victor Stinner · 9 years ago
  41. 4186222 Minor fix-up to apply the stack adjustment macros consistent with the other opcodes by Raymond Hettinger · 9 years ago
  42. 5665301 Issue #28257: Improved error message when pass a non-mapping as a var-keyword by Serhiy Storchaka · 9 years ago
  43. 419968c Issue #27358: Merge from 3.6 by Berker Peksag · 9 years ago
  44. 8e9045d Issue #27358: Fix typo in error message by Berker Peksag · 9 years ago
  45. 2e84de3 Issue #27358: Optimized merging var-keyword arguments and improved error by Serhiy Storchaka · 9 years ago
  46. e036ef8 Issue #27358: Optimized merging var-keyword arguments and improved error by Serhiy Storchaka · 9 years ago
  47. 775a0ea Issue #28257: Improved error message when pass a non-iterable as by Serhiy Storchaka · 9 years ago
  48. 7344285 Issue #28257: Improved error message when pass a non-iterable as by Serhiy Storchaka · 9 years ago
  49. c019158 Issue #27703: Got rid of unnecessary NULL checks in do_raise() in release mode. by Serhiy Storchaka · 9 years ago
  50. 208bbd2 Silence GCC warning. by Serhiy Storchaka · 9 years ago
  51. 63dc548 Issue #28086: Single var-positional argument of tuple subtype was passed by Serhiy Storchaka · 9 years ago
  52. 57f91ac Document kwnames in _PyObject_FastCallKeywords() and _PyStack_AsDict() by Victor Stinner · 9 years ago
  53. eece222 Issue #27213: Fix reference leaks by Victor Stinner · 9 years ago
  54. b728105 Issue #27213: Fixed different issues with reworked CALL_FUNCTION* opcodes. by Serhiy Storchaka · 9 years ago
  55. ab87400 Issue #27129: Replaced wordcode related magic constants with macros. by Serhiy Storchaka · 9 years ago
  56. a785c87 DTrace support: function calls, GC activity, line execution by Łukasz Langa · 9 years ago
  57. 75f94a7 remove more READ_TIMESTAMP by Benjamin Peterson · 9 years ago
  58. 1cfe1d1 remove READ_TIMESTAMP macro by Benjamin Peterson · 9 years ago
  59. 4fd64b9 remove ceval timestamp support by Benjamin Peterson · 9 years ago
  60. ae8b69c Issue #27810: Add _PyCFunction_FastCallKeywords() by Victor Stinner · 9 years ago
  61. d873572 Add _PyObject_FastCallKeywords() by Victor Stinner · 9 years ago
  62. f9b760f Rework CALL_FUNCTION* opcodes by Victor Stinner · 9 years ago
  63. 50c584f ceval: tighten the code of STORE_ANNOTATION by Yury Selivanov · 9 years ago
  64. eb63645 Issue #28003: Implement PEP 525 -- Asynchronous Generators. by Yury Selivanov · 9 years ago
  65. f8cb8a1 Issue #27985: Implement PEP 526 -- Syntax for Variable Annotations. by Yury Selivanov · 9 years ago
  66. 4c483ad Merge by Raymond Hettinger · 9 years ago
  67. 262b679 Issue #26020: Fix evaluation order for set literals by Raymond Hettinger · 9 years ago
  68. 5c4de28 Add the co_extra field and accompanying APIs to code objects. by Brett Cannon · 9 years ago
  69. ea525a2 Issue #27078: Added BUILD_STRING opcode. Optimized f-strings evaluation. by Serhiy Storchaka · 9 years ago
  70. 3cebf93 Implement the frame evaluation API aspect of PEP 523. by Brett Cannon · 9 years ago
  71. 15f44ab Issue #27895: Spelling fixes (Contributed by Ville Skyttä). by Raymond Hettinger · 9 years ago
  72. e90bdb1 Issue #27830: Revert, remove _PyFunction_FastCallKeywords() by Victor Stinner · 9 years ago
  73. 577e1f8 Add _PyObject_FastCallKeywords() by Victor Stinner · 9 years ago
  74. 74319ae Use Py_ssize_t type for number of arguments by Victor Stinner · 9 years ago
  75. 6e2333d PyEval_CallObjectWithKeywords() doesn't inc/decref by Victor Stinner · 9 years ago
  76. 155ea65 PyEval_CallObjectWithKeywords() uses fast call with kwargs by Victor Stinner · 9 years ago
  77. 6fea7f7 Issue #27809: Cleanup _PyEval_EvalCodeWithName() by Victor Stinner · 9 years ago
  78. b900939 _PyFunction_FastCallDict() supports keyword args by Victor Stinner · 9 years ago
  79. 559bb6a Rename _PyObject_FastCall() to _PyObject_FastCallDict() by Victor Stinner · 9 years ago
  80. 2eedc11 Optimize call to Python function without argument by Victor Stinner · 9 years ago
  81. df142fd import_name() now uses fast call by Victor Stinner · 9 years ago
  82. 8a31c82 Fix PyObject_Call() parameter names by Victor Stinner · 9 years ago
  83. 3f745bf PyEval_CallObjectWithKeywords() uses fast call by Victor Stinner · 9 years ago
  84. 9be7e7b Add _PyObject_FastCall() by Victor Stinner · 9 years ago
  85. 0a6996d Merge 3.5 (fix raise) by Victor Stinner · 9 years ago
  86. eec9331 Fix SystemError in "raise" statement by Victor Stinner · 9 years ago
  87. 17061a9 Use Py_ssize_t in _PyEval_EvalCodeWithName() by Victor Stinner · 9 years ago
  88. c702001 Issue #27128: Cleanup _PyEval_EvalCodeWithName() by Victor Stinner · 9 years ago
  89. 133138a Issue #22557: Now importing already imported modules is up to 2.5 times faster. by Serhiy Storchaka · 9 years ago
  90. 36261d7 Issue #16191: Merge comment fixes from 3.5 by Martin Panter · 9 years ago
  91. 95f53c1 Issue #16191: Fix up references to renamed variables by Martin Panter · 9 years ago
  92. fbd1523 Issue #27352: Correct the validation of the ImportFrom AST node and simplify by Serhiy Storchaka · 9 years ago
  93. da9c513 Issue #27255: Added more predictions in ceval.c. by Serhiy Storchaka · 9 years ago
  94. 64204de Issue #27095: Simplified MAKE_FUNCTION and removed MAKE_CLOSURE opcodes. by Serhiy Storchaka · 9 years ago
  95. 6a7506a Issue #27140: Added BUILD_CONST_KEY_MAP opcode. by Serhiy Storchaka · 9 years ago
  96. 711d25d Merge 3.5 (issue #27243) by Yury Selivanov · 9 years ago
  97. a6f6edb Issue #27243: Fix __aiter__ protocol by Yury Selivanov · 9 years ago
  98. 74f2fe6 Fixed the use of _Py_IS_ALIGNED (issue #27097). by Serhiy Storchaka · 9 years ago
  99. f60bf5f Issue #27097: Python interpreter is now about 7% faster due to optimized by Serhiy Storchaka · 9 years ago
  100. b0f80b0 Issue #26647: Python interpreter now uses 16-bit wordcode instead of bytecode. by Serhiy Storchaka · 9 years ago