summaryrefslogtreecommitdiff
path: root/Include/rangeobject.h
diff options
context:
space:
mode:
authorMark Hammond <mhammond@skippinet.com.au>2002-08-12 07:21:58 +0000
committerMark Hammond <mhammond@skippinet.com.au>2002-08-12 07:21:58 +0000
commit91a681debf9ffec155d0aff8a0bb5f965f592e16 (patch)
tree09f28782e3b0a24e64deddeafc9df24ac93855ca /Include/rangeobject.h
parent44121a6bc9828c993932b87e442440dc4f260f3c (diff)
downloadcpython-git-91a681debf9ffec155d0aff8a0bb5f965f592e16.tar.gz
Excise DL_EXPORT from Include.
Thanks to Skip Montanaro and Kalle Svensson for the patches.
Diffstat (limited to 'Include/rangeobject.h')
-rw-r--r--Include/rangeobject.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Include/rangeobject.h b/Include/rangeobject.h
index ff6dbc2871..b6f571ba32 100644
--- a/Include/rangeobject.h
+++ b/Include/rangeobject.h
@@ -15,11 +15,11 @@ Range objects behave like the corresponding tuple objects except that
they are represented by a start, stop, and step datamembers.
*/
-extern DL_IMPORT(PyTypeObject) PyRange_Type;
+PyAPI_DATA(PyTypeObject) PyRange_Type;
#define PyRange_Check(op) ((op)->ob_type == &PyRange_Type)
-extern DL_IMPORT(PyObject *) PyRange_New(long, long, long, int);
+PyAPI_FUNC(PyObject *) PyRange_New(long, long, long, int);
#ifdef __cplusplus
}