1990-10-14 09:07:46 -03:00
|
|
|
/* Parser-tokenizer link interface */
|
2018-11-11 19:56:19 -04:00
|
|
|
|
2010-12-03 16:14:31 -04:00
|
|
|
#ifndef Py_LIMITED_API
|
2000-07-08 20:37:28 -03:00
|
|
|
#ifndef Py_PARSETOK_H
|
|
|
|
#define Py_PARSETOK_H
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2018-11-11 19:56:19 -04:00
|
|
|
#include "grammar.h" /* grammar */
|
|
|
|
#include "node.h" /* node */
|
|
|
|
|
1994-08-01 08:34:53 -03:00
|
|
|
typedef struct {
|
2000-07-08 20:37:28 -03:00
|
|
|
int error;
|
2011-04-04 19:39:01 -03:00
|
|
|
PyObject *filename;
|
2000-07-08 20:37:28 -03:00
|
|
|
int lineno;
|
|
|
|
int offset;
|
2010-12-26 21:49:31 -04:00
|
|
|
char *text; /* UTF-8-encoded string */
|
2000-07-11 14:53:00 -03:00
|
|
|
int token;
|
|
|
|
int expected;
|
1994-08-01 08:34:53 -03:00
|
|
|
} perrdetail;
|
|
|
|
|
2002-03-22 19:53:36 -04:00
|
|
|
#if 0
|
2017-11-28 11:56:10 -04:00
|
|
|
#define PyPARSE_YIELD_IS_KEYWORD 0x0001
|
2002-03-22 19:53:36 -04:00
|
|
|
#endif
|
2001-07-16 02:37:24 -03:00
|
|
|
|
2017-11-28 11:56:10 -04:00
|
|
|
#define PyPARSE_DONT_IMPLY_DEDENT 0x0002
|
2003-02-13 18:07:59 -04:00
|
|
|
|
2006-03-15 00:58:47 -04:00
|
|
|
#if 0
|
2017-11-28 11:56:10 -04:00
|
|
|
#define PyPARSE_WITH_IS_KEYWORD 0x0003
|
2008-03-26 19:34:47 -03:00
|
|
|
#define PyPARSE_PRINT_IS_FUNCTION 0x0004
|
|
|
|
#define PyPARSE_UNICODE_LITERALS 0x0008
|
2006-03-15 00:58:47 -04:00
|
|
|
#endif
|
2006-02-28 15:02:24 -04:00
|
|
|
|
2009-03-02 19:31:26 -04:00
|
|
|
#define PyPARSE_IGNORE_COOKIE 0x0010
|
2009-04-01 02:08:41 -03:00
|
|
|
#define PyPARSE_BARRY_AS_BDFL 0x0020
|
2019-01-31 07:40:27 -04:00
|
|
|
#define PyPARSE_TYPE_COMMENTS 0x0040
|
2019-03-07 16:38:08 -04:00
|
|
|
#define PyPARSE_ASYNC_HACKS 0x0080
|
2009-03-02 19:31:26 -04:00
|
|
|
|
2002-12-11 10:04:59 -04:00
|
|
|
PyAPI_FUNC(node *) PyParser_ParseString(const char *, grammar *, int,
|
2000-07-08 20:37:28 -03:00
|
|
|
perrdetail *);
|
2002-12-11 10:04:59 -04:00
|
|
|
PyAPI_FUNC(node *) PyParser_ParseFile (FILE *, const char *, grammar *, int,
|
2013-10-19 15:03:34 -03:00
|
|
|
const char *, const char *,
|
|
|
|
perrdetail *);
|
1993-07-28 06:05:47 -03:00
|
|
|
|
2002-12-11 10:04:59 -04:00
|
|
|
PyAPI_FUNC(node *) PyParser_ParseStringFlags(const char *, grammar *, int,
|
2001-07-16 02:37:24 -03:00
|
|
|
perrdetail *, int);
|
2013-08-26 17:28:21 -03:00
|
|
|
PyAPI_FUNC(node *) PyParser_ParseFileFlags(
|
|
|
|
FILE *fp,
|
|
|
|
const char *filename, /* decoded from the filesystem encoding */
|
|
|
|
const char *enc,
|
|
|
|
grammar *g,
|
|
|
|
int start,
|
2013-10-19 15:03:34 -03:00
|
|
|
const char *ps1,
|
|
|
|
const char *ps2,
|
2013-08-26 17:28:21 -03:00
|
|
|
perrdetail *err_ret,
|
|
|
|
int flags);
|
2010-12-26 21:49:31 -04:00
|
|
|
PyAPI_FUNC(node *) PyParser_ParseFileFlagsEx(
|
|
|
|
FILE *fp,
|
|
|
|
const char *filename, /* decoded from the filesystem encoding */
|
|
|
|
const char *enc,
|
|
|
|
grammar *g,
|
|
|
|
int start,
|
2013-10-19 15:03:34 -03:00
|
|
|
const char *ps1,
|
|
|
|
const char *ps2,
|
2010-12-26 21:49:31 -04:00
|
|
|
perrdetail *err_ret,
|
|
|
|
int *flags);
|
2013-08-26 17:28:21 -03:00
|
|
|
PyAPI_FUNC(node *) PyParser_ParseFileObject(
|
|
|
|
FILE *fp,
|
|
|
|
PyObject *filename,
|
|
|
|
const char *enc,
|
|
|
|
grammar *g,
|
|
|
|
int start,
|
2013-10-19 15:03:34 -03:00
|
|
|
const char *ps1,
|
|
|
|
const char *ps2,
|
2013-08-26 17:28:21 -03:00
|
|
|
perrdetail *err_ret,
|
|
|
|
int *flags);
|
2001-07-16 02:37:24 -03:00
|
|
|
|
2013-08-26 17:28:21 -03:00
|
|
|
PyAPI_FUNC(node *) PyParser_ParseStringFlagsFilename(
|
|
|
|
const char *s,
|
|
|
|
const char *filename, /* decoded from the filesystem encoding */
|
|
|
|
grammar *g,
|
|
|
|
int start,
|
|
|
|
perrdetail *err_ret,
|
|
|
|
int flags);
|
2010-12-26 21:49:31 -04:00
|
|
|
PyAPI_FUNC(node *) PyParser_ParseStringFlagsFilenameEx(
|
|
|
|
const char *s,
|
|
|
|
const char *filename, /* decoded from the filesystem encoding */
|
|
|
|
grammar *g,
|
|
|
|
int start,
|
|
|
|
perrdetail *err_ret,
|
|
|
|
int *flags);
|
2013-08-26 17:28:21 -03:00
|
|
|
PyAPI_FUNC(node *) PyParser_ParseStringObject(
|
|
|
|
const char *s,
|
|
|
|
PyObject *filename,
|
|
|
|
grammar *g,
|
|
|
|
int start,
|
|
|
|
perrdetail *err_ret,
|
|
|
|
int *flags);
|
2003-04-17 11:55:42 -03:00
|
|
|
|
2011-04-04 19:39:01 -03:00
|
|
|
/* Note that the following functions are defined in pythonrun.c,
|
|
|
|
not in parsetok.c */
|
2003-04-17 11:55:42 -03:00
|
|
|
PyAPI_FUNC(void) PyParser_SetError(perrdetail *);
|
2011-04-04 19:39:01 -03:00
|
|
|
PyAPI_FUNC(void) PyParser_ClearError(perrdetail *);
|
2003-04-17 11:55:42 -03:00
|
|
|
|
1993-07-28 06:05:47 -03:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /* !Py_PARSETOK_H */
|
2010-12-03 16:14:31 -04:00
|
|
|
#endif /* !Py_LIMITED_API */
|