summaryrefslogtreecommitdiff
path: root/Include/tupleobject.h
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>1995-04-23 22:06:05 +0000
committerJack Jansen <jack.jansen@cwi.nl>1995-04-23 22:06:05 +0000
commitbf2dea2d082b8bf46810106350a9fe02e0055b9b (patch)
tree8eb8c4a9d1b1478586c3af30d0695d86aa1190f2 /Include/tupleobject.h
parent91fb06d7dbf5f78189033e2bceb52a15110b817f (diff)
downloadcpython-bf2dea2d082b8bf46810106350a9fe02e0055b9b.tar.gz
DL_IMPORT macro was called in a funny way (and MW barfed on it)
Diffstat (limited to 'Include/tupleobject.h')
-rw-r--r--Include/tupleobject.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/tupleobject.h b/Include/tupleobject.h
index 992c77085b..23c58a586c 100644
--- a/Include/tupleobject.h
+++ b/Include/tupleobject.h
@@ -49,7 +49,7 @@ typedef struct {
PyObject *ob_item[1];
} PyTupleObject;
-extern DL_IMPORT(PyTypeObject) PyTuple_Type;
+extern DL_IMPORT PyTypeObject PyTuple_Type;
#define PyTuple_Check(op) ((op)->ob_type == &PyTuple_Type)