This repository was archived by the owner on Feb 13, 2025. It is now read-only.
forked from python/cpython
-
Notifications
You must be signed in to change notification settings - Fork 61
Add Stackless support to all *PyObject_Call* API functions #137
Labels
Milestone
Comments
akruis
pushed a commit
that referenced
this issue
Oct 29, 2017
Add Stackless support to all call-API-functions in abstract.c
akruis
pushed a commit
that referenced
this issue
Oct 29, 2017
Add Stackless support to _PyObject_FastCallKeywords() and _PyFunction_FastCallKeywords.
akruis
pushed a commit
that referenced
this issue
Oct 29, 2017
Add Stackless support to _PyObject_Call_Prepend().
akruis
pushed a commit
that referenced
this issue
Oct 29, 2017
- Add Stackless support to _PyObject_FastCallKeywords(). - Use STACKLESS_PROPOSE_... in a consistent way.
akruis
pushed a commit
that referenced
this issue
Oct 29, 2017
Add Stackless support to _PyCFunction_FastCallKeywords().
akruis
pushed a commit
that referenced
this issue
Oct 29, 2017
Add Stackless support for METH_FASTCALL C-functions. Add a warning about the ABI change to the Stackless changelog.
akruis
pushed a commit
that referenced
this issue
Oct 29, 2017
Add documentation and a changelog entry.
akruis
pushed a commit
that referenced
this issue
Nov 1, 2017
Add Stackless support to _PyObject_CallFunctionVa() and related functions.
akruis
pushed a commit
that referenced
this issue
Nov 1, 2017
Fix Stackless support of _PyCFunction_FastCallKeywords().
akruis
pushed a commit
that referenced
this issue
Nov 1, 2017
Add Stackless support to _PyMethodDescr_FastCallKeywords().
akruis
pushed a commit
that referenced
this issue
Nov 1, 2017
Add Stackless support to cfunction_call_varargs().
akruis
pushed a commit
that referenced
this issue
Nov 1, 2017
Add Stackless support to function _PyObject_FastCall_Prepend().
akruis
pushed a commit
that referenced
this issue
Dec 21, 2017
) Part of patch by Victor Stinner. (cherry-pick from d6debb2)
Done. Stackless 3.6.4 is released. |
akruis
pushed a commit
that referenced
this issue
Mar 4, 2018
Make also minor PEP8 coding style fixes on modified imports.
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Meanwhile the Python C-API contains many functions for calling callable objects or functions or methods. Some of them support stackless calls, some don't.
For Stackless 3.6 I'm add Stackless support to all of them.
The text was updated successfully, but these errors were encountered: