1991-02-19 20:39:46 +08:00
|
|
|
|
1990-10-14 20:07:46 +08:00
|
|
|
/* Parser-tokenizer link interface */
|
|
|
|
|
2000-07-09 07:37:28 +08:00
|
|
|
#ifndef Py_PARSETOK_H
|
|
|
|
#define Py_PARSETOK_H
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
1994-08-01 19:34:53 +08:00
|
|
|
typedef struct {
|
2000-07-09 07:37:28 +08:00
|
|
|
int error;
|
2002-12-11 22:04:59 +08:00
|
|
|
const char *filename;
|
2000-07-09 07:37:28 +08:00
|
|
|
int lineno;
|
|
|
|
int offset;
|
|
|
|
char *text;
|
2000-07-12 01:53:00 +08:00
|
|
|
int token;
|
|
|
|
int expected;
|
1994-08-01 19:34:53 +08:00
|
|
|
} perrdetail;
|
|
|
|
|
2002-03-23 07:53:36 +08:00
|
|
|
#if 0
|
2001-07-16 13:37:24 +08:00
|
|
|
#define PyPARSE_YIELD_IS_KEYWORD 0x0001
|
2002-03-23 07:53:36 +08:00
|
|
|
#endif
|
2001-07-16 13:37:24 +08:00
|
|
|
|
2003-02-14 06:07:59 +08:00
|
|
|
#define PyPARSE_DONT_IMPLY_DEDENT 0x0002
|
|
|
|
|
2006-03-15 12:58:47 +08:00
|
|
|
#if 0
|
2006-03-01 03:02:24 +08:00
|
|
|
#define PyPARSE_WITH_IS_KEYWORD 0x0003
|
2008-03-27 06:34:47 +08:00
|
|
|
#define PyPARSE_PRINT_IS_FUNCTION 0x0004
|
|
|
|
#define PyPARSE_UNICODE_LITERALS 0x0008
|
2006-03-15 12:58:47 +08:00
|
|
|
#endif
|
2006-03-01 03:02:24 +08:00
|
|
|
|
2009-03-03 07:31:26 +08:00
|
|
|
#define PyPARSE_IGNORE_COOKIE 0x0010
|
2009-04-01 13:08:41 +08:00
|
|
|
#define PyPARSE_BARRY_AS_BDFL 0x0020
|
2009-03-03 07:31:26 +08:00
|
|
|
|
2002-12-11 22:04:59 +08:00
|
|
|
PyAPI_FUNC(node *) PyParser_ParseString(const char *, grammar *, int,
|
2000-07-09 07:37:28 +08:00
|
|
|
perrdetail *);
|
2002-12-11 22:04:59 +08:00
|
|
|
PyAPI_FUNC(node *) PyParser_ParseFile (FILE *, const char *, grammar *, int,
|
2000-07-09 07:37:28 +08:00
|
|
|
char *, char *, perrdetail *);
|
1993-07-28 17:05:47 +08:00
|
|
|
|
2002-12-11 22:04:59 +08:00
|
|
|
PyAPI_FUNC(node *) PyParser_ParseStringFlags(const char *, grammar *, int,
|
2001-07-16 13:37:24 +08:00
|
|
|
perrdetail *, int);
|
2007-09-04 17:18:06 +08:00
|
|
|
PyAPI_FUNC(node *) PyParser_ParseFileFlags(FILE *, const char *,
|
|
|
|
const char*, grammar *,
|
2001-07-16 13:37:24 +08:00
|
|
|
int, char *, char *,
|
|
|
|
perrdetail *, int);
|
2008-03-27 06:34:47 +08:00
|
|
|
PyAPI_FUNC(node *) PyParser_ParseFileFlagsEx(FILE *, const char *,
|
|
|
|
const char*, grammar *,
|
|
|
|
int, char *, char *,
|
|
|
|
perrdetail *, int *);
|
2001-07-16 13:37:24 +08:00
|
|
|
|
2002-12-11 22:04:59 +08:00
|
|
|
PyAPI_FUNC(node *) PyParser_ParseStringFlagsFilename(const char *,
|
|
|
|
const char *,
|
2002-07-09 17:23:27 +08:00
|
|
|
grammar *, int,
|
|
|
|
perrdetail *, int);
|
2008-03-27 06:34:47 +08:00
|
|
|
PyAPI_FUNC(node *) PyParser_ParseStringFlagsFilenameEx(const char *,
|
|
|
|
const char *,
|
|
|
|
grammar *, int,
|
|
|
|
perrdetail *, int *);
|
2003-04-17 22:55:42 +08:00
|
|
|
|
|
|
|
/* Note that he following function is defined in pythonrun.c not parsetok.c. */
|
|
|
|
PyAPI_FUNC(void) PyParser_SetError(perrdetail *);
|
|
|
|
|
1993-07-28 17:05:47 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /* !Py_PARSETOK_H */
|