]> granicus.if.org Git - python/commitdiff
use PyAPI_FUNC instead of DL_IMPORT. are we going to deprecate the old non-Py PREFIX...
authorNeal Norwitz <nnorwitz@gmail.com>
Sun, 23 Oct 2005 19:06:02 +0000 (19:06 +0000)
committerNeal Norwitz <nnorwitz@gmail.com>
Sun, 23 Oct 2005 19:06:02 +0000 (19:06 +0000)
Include/compile.h

index 01fd75660288c4687276df4e885bfce9edcb901c..5c6a7c766c78e6d672c3f5d5cad6f078662eb8b6 100644 (file)
@@ -24,9 +24,9 @@ typedef struct {
 #define FUTURE_DIVISION "division"
 
 struct _mod; /* Declare the existence of this type */
-DL_IMPORT(PyCodeObject *) PyAST_Compile(struct _mod *, const char *,
+PyAPI_FUNC(PyCodeObject *) PyAST_Compile(struct _mod *, const char *,
                                        PyCompilerFlags *);
-DL_IMPORT(PyFutureFeatures *) PyFuture_FromAST(struct _mod *, const char *);
+PyAPI_FUNC(PyFutureFeatures *) PyFuture_FromAST(struct _mod *, const char *);
 
 #define ERR_LATE_FUTURE \
 "from __future__ imports must occur at the beginning of the file"