mirror of
https://github.com/python/cpython.git
synced 2025-11-25 21:11:09 +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
|
|
@ -21,18 +21,18 @@ typedef struct {
|
|||
#define PyPARSE_YIELD_IS_KEYWORD 0x0001
|
||||
#endif
|
||||
|
||||
extern DL_IMPORT(node *) PyParser_ParseString(char *, grammar *, int,
|
||||
PyAPI_FUNC(node *) PyParser_ParseString(char *, grammar *, int,
|
||||
perrdetail *);
|
||||
extern DL_IMPORT(node *) PyParser_ParseFile (FILE *, char *, grammar *, int,
|
||||
PyAPI_FUNC(node *) PyParser_ParseFile (FILE *, char *, grammar *, int,
|
||||
char *, char *, perrdetail *);
|
||||
|
||||
extern DL_IMPORT(node *) PyParser_ParseStringFlags(char *, grammar *, int,
|
||||
PyAPI_FUNC(node *) PyParser_ParseStringFlags(char *, grammar *, int,
|
||||
perrdetail *, int);
|
||||
extern DL_IMPORT(node *) PyParser_ParseFileFlags(FILE *, char *, grammar *,
|
||||
PyAPI_FUNC(node *) PyParser_ParseFileFlags(FILE *, char *, grammar *,
|
||||
int, char *, char *,
|
||||
perrdetail *, int);
|
||||
|
||||
extern DL_IMPORT(node *) PyParser_ParseStringFlagsFilename(char *,
|
||||
PyAPI_FUNC(node *) PyParser_ParseStringFlagsFilename(char *,
|
||||
char *,
|
||||
grammar *, int,
|
||||
perrdetail *, int);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue