diff options
author | Guido van Rossum <guido@python.org> | 2001-01-24 22:13:48 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2001-01-24 22:13:48 (GMT) |
commit | bacca54b5955ae33354b362564806a1857fe505e (patch) | |
tree | 5d8ce8531c19fd51270e8db98489a8f1e4217bb4 /Include | |
parent | 42756df91cb466d3672756cdeae03089adb72e3f (diff) | |
download | cpython-bacca54b5955ae33354b362564806a1857fe505e.zip cpython-bacca54b5955ae33354b362564806a1857fe505e.tar.gz cpython-bacca54b5955ae33354b362564806a1857fe505e.tar.bz2 |
Add a flag to indicate the presence of the tp_richcompare field, and
add it to the default flags.
Diffstat (limited to 'Include')
-rw-r--r-- | Include/object.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Include/object.h b/Include/object.h index 0503691..de67505 100644 --- a/Include/object.h +++ b/Include/object.h @@ -337,9 +337,14 @@ given type object has a specified feature. /* PyNumberMethods do their own coercion */ #define Py_TPFLAGS_CHECKTYPES (1L<<4) -#define Py_TPFLAGS_DEFAULT (Py_TPFLAGS_HAVE_GETCHARBUFFER | \ +#define Py_TPFLAGS_HAVE_RICHCOMPARE (1L<<5) + +#define Py_TPFLAGS_DEFAULT ( \ + Py_TPFLAGS_HAVE_GETCHARBUFFER | \ Py_TPFLAGS_HAVE_SEQUENCE_IN | \ - Py_TPFLAGS_HAVE_INPLACEOPS) + Py_TPFLAGS_HAVE_INPLACEOPS | \ + Py_TPFLAGS_HAVE_RICHCOMPARE | \ + 0) #define PyType_HasFeature(t,f) (((t)->tp_flags & (f)) != 0) |