mirror of
https://github.com/python/cpython.git
synced 2025-08-30 21:48:47 +00:00
The real suport for augmented assignment: new opcodes, new PyNumber and
PySequence methods and functions, new tokens.
This commit is contained in:
parent
e289e0bd0c
commit
dd8dbdb717
6 changed files with 223 additions and 58 deletions
|
@ -73,6 +73,10 @@ extern DL_IMPORT(PyObject *) PyInstance_DoBinOp(PyObject *, PyObject *,
|
|||
PyObject * (*)(PyObject *,
|
||||
PyObject *));
|
||||
|
||||
extern DL_IMPORT(int)
|
||||
PyInstance_HalfBinOp(PyObject *, PyObject *, char *, PyObject **,
|
||||
PyObject * (*)(PyObject *, PyObject *), int);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue