summaryrefslogtreecommitdiffstats
path: root/Include/tupleobject.h
diff options
context:
space:
mode:
authorSjoerd Mullender <sjoerd@acm.org>1995-04-25 11:53:24 (GMT)
committerSjoerd Mullender <sjoerd@acm.org>1995-04-25 11:53:24 (GMT)
commit107c747009b3717840f4d5fae8f0d5987ae27f89 (patch)
treeba4c18a9bb40062fbe7c4c310d98171892f970e7 /Include/tupleobject.h
parent45ff77f43e8aef9486658f4dac7f5ea844fe03b8 (diff)
downloadcpython-107c747009b3717840f4d5fae8f0d5987ae27f89.zip
cpython-107c747009b3717840f4d5fae8f0d5987ae27f89.tar.gz
cpython-107c747009b3717840f4d5fae8f0d5987ae27f89.tar.bz2
DL_IMPORT needs an argument.
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 23c58a5..992c770 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)