mirror of
https://github.com/python/cpython.git
synced 2025-10-14 18:59:46 +00:00
Excise DL_EXPORT from Include.
Thanks to Skip Montanaro and Kalle Svensson for the patches.
This commit is contained in:
parent
44121a6bc9
commit
91a681debf
51 changed files with 661 additions and 665 deletions
|
@ -50,15 +50,15 @@ typedef struct _symtable_entry {
|
|||
struct symtable *ste_table;
|
||||
} PySymtableEntryObject;
|
||||
|
||||
extern DL_IMPORT(PyTypeObject) PySymtableEntry_Type;
|
||||
PyAPI_DATA(PyTypeObject) PySymtableEntry_Type;
|
||||
|
||||
#define PySymtableEntry_Check(op) ((op)->ob_type == &PySymtableEntry_Type)
|
||||
|
||||
extern DL_IMPORT(PyObject *) PySymtableEntry_New(struct symtable *,
|
||||
PyAPI_FUNC(PyObject *) PySymtableEntry_New(struct symtable *,
|
||||
char *, int, int);
|
||||
|
||||
DL_IMPORT(struct symtable *) PyNode_CompileSymtable(struct _node *, char *);
|
||||
DL_IMPORT(void) PySymtable_Free(struct symtable *);
|
||||
PyAPI_FUNC(struct symtable *) PyNode_CompileSymtable(struct _node *, char *);
|
||||
PyAPI_FUNC(void) PySymtable_Free(struct symtable *);
|
||||
|
||||
|
||||
#define TOP "global"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue