diff options
author | Sjoerd Mullender <sjoerd@acm.org> | 1995-04-25 11:53:24 (GMT) |
---|---|---|
committer | Sjoerd Mullender <sjoerd@acm.org> | 1995-04-25 11:53:24 (GMT) |
commit | 107c747009b3717840f4d5fae8f0d5987ae27f89 (patch) | |
tree | ba4c18a9bb40062fbe7c4c310d98171892f970e7 /Include/tupleobject.h | |
parent | 45ff77f43e8aef9486658f4dac7f5ea844fe03b8 (diff) | |
download | cpython-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.h | 2 |
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) |