diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 1995-04-23 22:06:05 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 1995-04-23 22:06:05 (GMT) |
commit | 5dbc7231a0cb14bc01e25fa93cf4f972744302f0 (patch) | |
tree | ddef007142bcdfbc83291606a499f0b30972a3d8 /Include/tupleobject.h | |
parent | d39f5f64538edd6c690fe635926063fb7cac853b (diff) | |
download | cpython-5dbc7231a0cb14bc01e25fa93cf4f972744302f0.zip cpython-5dbc7231a0cb14bc01e25fa93cf4f972744302f0.tar.gz cpython-5dbc7231a0cb14bc01e25fa93cf4f972744302f0.tar.bz2 |
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.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/tupleobject.h b/Include/tupleobject.h index 992c770..23c58a5 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) |