summaryrefslogtreecommitdiff
path: root/Include/tupleobject.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1994-08-18 16:18:13 +0000
committerGuido van Rossum <guido@python.org>1994-08-18 16:18:13 +0000
commitdab4b6dbb0630da2f70c3f18d4782fc42ee07f39 (patch)
tree890fd932190566f515ae668e3634e49c7169ea57 /Include/tupleobject.h
parent41972b8b15a2f7ee1ca43a4de8422df7be23b82a (diff)
downloadcpython-dab4b6dbb0630da2f70c3f18d4782fc42ee07f39.tar.gz
Changes for dynamic linking under NT
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 b422a40240..f89c655b2f 100644
--- a/Include/tupleobject.h
+++ b/Include/tupleobject.h
@@ -49,7 +49,7 @@ typedef struct {
object *ob_item[1];
} tupleobject;
-extern typeobject Tupletype;
+extern DL_IMPORT typeobject Tupletype;
#define is_tupleobject(op) ((op)->ob_type == &Tupletype)