diff options
author | Guido van Rossum <guido@python.org> | 1994-08-18 16:18:13 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1994-08-18 16:18:13 +0000 |
commit | dab4b6dbb0630da2f70c3f18d4782fc42ee07f39 (patch) | |
tree | 890fd932190566f515ae668e3634e49c7169ea57 /Include/rangeobject.h | |
parent | 41972b8b15a2f7ee1ca43a4de8422df7be23b82a (diff) | |
download | cpython-dab4b6dbb0630da2f70c3f18d4782fc42ee07f39.tar.gz |
Changes for dynamic linking under NT
Diffstat (limited to 'Include/rangeobject.h')
-rw-r--r-- | Include/rangeobject.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/rangeobject.h b/Include/rangeobject.h index 9befd9b729..50d660b213 100644 --- a/Include/rangeobject.h +++ b/Include/rangeobject.h @@ -34,7 +34,7 @@ Range objects behave like the corresponding tuple objects except that they are represented by a start, stop, and step datamembers. */ -extern typeobject Rangetype; +extern DL_IMPORT typeobject Rangetype; #define is_rangeobject(op) ((op)->ob_type == &Rangetype) |