diff options
author | Thomas Wouters <thomas@python.org> | 2000-08-24 20:09:45 (GMT) |
---|---|---|
committer | Thomas Wouters <thomas@python.org> | 2000-08-24 20:09:45 (GMT) |
commit | dd8dbdb7172fbafb5ffab8600e620103fc19879e (patch) | |
tree | d0706f5e94cb061057f85138e8637885c9f4cb57 /Include/classobject.h | |
parent | e289e0bd0c3db9755bb2ddd49b08091049bc301d (diff) | |
download | cpython-dd8dbdb7172fbafb5ffab8600e620103fc19879e.zip cpython-dd8dbdb7172fbafb5ffab8600e620103fc19879e.tar.gz cpython-dd8dbdb7172fbafb5ffab8600e620103fc19879e.tar.bz2 |
The real suport for augmented assignment: new opcodes, new PyNumber and
PySequence methods and functions, new tokens.
Diffstat (limited to 'Include/classobject.h')
-rw-r--r-- | Include/classobject.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Include/classobject.h b/Include/classobject.h index 2902e77..67416e4 100644 --- a/Include/classobject.h +++ b/Include/classobject.h @@ -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 |