[Python-checkins] python/dist/src/Include ast.h,2.1,2.2

nnorwitz@users.sourceforge.net nnorwitz at users.sourceforge.net
Mon Oct 24 03:07:51 CEST 2005


Update of /cvsroot/python/python/dist/src/Include
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3264/Include

Modified Files:
	ast.h 
Log Message:
use PyAPI_FUNC instead of DL_IMPORT.  are we going to deprecate the old non-Py PREFIXED macros, etc?

Index: ast.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Include/ast.h,v
retrieving revision 2.1
retrieving revision 2.2
diff -u -d -r2.1 -r2.2
--- ast.h	20 Oct 2005 19:59:24 -0000	2.1
+++ ast.h	24 Oct 2005 01:07:47 -0000	2.2
@@ -4,8 +4,8 @@
 extern "C" {
 #endif
 
-extern DL_IMPORT(mod_ty) PyAST_FromNode(const node *, PyCompilerFlags *flags,
-					const char *);
+PyAPI_FUNC(mod_ty) PyAST_FromNode(const node *, PyCompilerFlags *flags,
+				  const char *);
 
 #ifdef __cplusplus
 }



More information about the Python-checkins mailing list