summaryrefslogtreecommitdiffstats
path: root/Mac/Modules/qd
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2002-12-19 21:24:35 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>2002-12-19 21:24:35 (GMT)
commitf955784f0cfeecb94d3f2ade83a5ea548391f74b (patch)
tree3f112a082ca586d310f0a70001ab4bc14e087cca /Mac/Modules/qd
parent5bb2f6497f6b4455e4da64ef049bf43cd1c2215a (diff)
downloadcpython-f955784f0cfeecb94d3f2ade83a5ea548391f74b.zip
cpython-f955784f0cfeecb94d3f2ade83a5ea548391f74b.tar.gz
cpython-f955784f0cfeecb94d3f2ade83a5ea548391f74b.tar.bz2
Regenerated with inheritance-aware xxxx_Check() macros.
Diffstat (limited to 'Mac/Modules/qd')
-rw-r--r--Mac/Modules/qd/_Qdmodule.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Mac/Modules/qd/_Qdmodule.c b/Mac/Modules/qd/_Qdmodule.c
index 0db5299..c1690c1 100644
--- a/Mac/Modules/qd/_Qdmodule.c
+++ b/Mac/Modules/qd/_Qdmodule.c
@@ -145,7 +145,7 @@ static PyObject *Qd_Error;
PyTypeObject GrafPort_Type;
-#define GrafObj_Check(x) ((x)->ob_type == &GrafPort_Type)
+#define GrafObj_Check(x) ((x)->ob_type == &GrafPort_Type || PyObject_TypeCheck((x), &GrafPort_Type))
typedef struct GrafPortObject {
PyObject_HEAD
@@ -1137,7 +1137,7 @@ PyTypeObject GrafPort_Type = {
PyTypeObject BitMap_Type;
-#define BMObj_Check(x) ((x)->ob_type == &BitMap_Type)
+#define BMObj_Check(x) ((x)->ob_type == &BitMap_Type || PyObject_TypeCheck((x), &BitMap_Type))
typedef struct BitMapObject {
PyObject_HEAD