Fred Drake | ea9cb5a | 2000-07-09 00:20:36 +0000 | [diff] [blame] | 1 | #ifndef Py_COMPILE_H |
| 2 | #define Py_COMPILE_H |
Thomas Wouters | ca82a8b | 2006-02-28 23:09:08 +0000 | [diff] [blame] | 3 | |
Victor Stinner | 2bdc7f5 | 2011-09-29 01:04:08 +0200 | [diff] [blame] | 4 | #ifndef Py_LIMITED_API |
Thomas Wouters | ca82a8b | 2006-02-28 23:09:08 +0000 | [diff] [blame] | 5 | #include "code.h" |
| 6 | |
Fred Drake | ea9cb5a | 2000-07-09 00:20:36 +0000 | [diff] [blame] | 7 | #ifdef __cplusplus |
| 8 | extern "C" { |
| 9 | #endif |
| 10 | |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 11 | /* Public interface */ |
Guido van Rossum | e543a94 | 1991-04-03 19:00:55 +0000 | [diff] [blame] | 12 | struct _node; /* Declare the existence of this type */ |
Martin v. Löwis | 95292d6 | 2002-12-11 14:04:59 +0000 | [diff] [blame] | 13 | PyAPI_FUNC(PyCodeObject *) PyNode_Compile(struct _node *, const char *); |
Guido van Rossum | a330996 | 1993-07-28 09:05:47 +0000 | [diff] [blame] | 14 | |
Jeremy Hylton | 4db62b1 | 2001-02-27 19:07:02 +0000 | [diff] [blame] | 15 | /* Future feature support */ |
| 16 | |
| 17 | typedef struct { |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 18 | int ff_features; /* flags set by future statements */ |
| 19 | int ff_lineno; /* line number of last future statement */ |
Jeremy Hylton | 4db62b1 | 2001-02-27 19:07:02 +0000 | [diff] [blame] | 20 | } PyFutureFeatures; |
| 21 | |
Jeremy Hylton | 4db62b1 | 2001-02-27 19:07:02 +0000 | [diff] [blame] | 22 | #define FUTURE_NESTED_SCOPES "nested_scopes" |
Guido van Rossum | b09f7ed | 2001-07-15 21:08:29 +0000 | [diff] [blame] | 23 | #define FUTURE_GENERATORS "generators" |
Guido van Rossum | 4668b00 | 2001-08-08 05:00:18 +0000 | [diff] [blame] | 24 | #define FUTURE_DIVISION "division" |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 25 | #define FUTURE_ABSOLUTE_IMPORT "absolute_import" |
Thomas Wouters | 34aa7ba | 2006-02-28 19:02:24 +0000 | [diff] [blame] | 26 | #define FUTURE_WITH_STATEMENT "with_statement" |
Eric Smith | 8782408 | 2008-03-20 23:02:08 +0000 | [diff] [blame] | 27 | #define FUTURE_PRINT_FUNCTION "print_function" |
Christian Heimes | 4d6ec85 | 2008-03-26 22:34:47 +0000 | [diff] [blame] | 28 | #define FUTURE_UNICODE_LITERALS "unicode_literals" |
Brett Cannon | e3944a5 | 2009-04-01 05:08:41 +0000 | [diff] [blame] | 29 | #define FUTURE_BARRY_AS_BDFL "barry_as_FLUFL" |
Guido van Rossum | 4668b00 | 2001-08-08 05:00:18 +0000 | [diff] [blame] | 30 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 31 | struct _mod; /* Declare the existence of this type */ |
Georg Brandl | 8334fd9 | 2010-12-04 10:26:46 +0000 | [diff] [blame] | 32 | #define PyAST_Compile(mod, s, f, ar) PyAST_CompileEx(mod, s, f, -1, ar) |
Victor Stinner | 00676d1 | 2010-12-27 01:49:31 +0000 | [diff] [blame] | 33 | PyAPI_FUNC(PyCodeObject *) PyAST_CompileEx( |
Victor Stinner | 0d71116 | 2010-12-27 02:39:20 +0000 | [diff] [blame] | 34 | struct _mod *mod, |
Victor Stinner | 00676d1 | 2010-12-27 01:49:31 +0000 | [diff] [blame] | 35 | const char *filename, /* decoded from the filesystem encoding */ |
| 36 | PyCompilerFlags *flags, |
| 37 | int optimize, |
| 38 | PyArena *arena); |
Neal Norwitz | 38eb50b | 2005-10-23 19:06:02 +0000 | [diff] [blame] | 39 | PyAPI_FUNC(PyFutureFeatures *) PyFuture_FromAST(struct _mod *, const char *); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 40 | |
Victor Stinner | 2bdc7f5 | 2011-09-29 01:04:08 +0200 | [diff] [blame] | 41 | /* _Py_Mangle is defined in compile.c */ |
| 42 | PyAPI_FUNC(PyObject*) _Py_Mangle(PyObject *p, PyObject *name); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 43 | |
Guido van Rossum | a330996 | 1993-07-28 09:05:47 +0000 | [diff] [blame] | 44 | #ifdef __cplusplus |
| 45 | } |
| 46 | #endif |
Victor Stinner | 2bdc7f5 | 2011-09-29 01:04:08 +0200 | [diff] [blame] | 47 | |
Martin v. Löwis | 4d0d471 | 2010-12-03 20:14:31 +0000 | [diff] [blame] | 48 | #endif /* !Py_LIMITED_API */ |
Victor Stinner | 2bdc7f5 | 2011-09-29 01:04:08 +0200 | [diff] [blame] | 49 | |
| 50 | /* These definitions must match corresponding definitions in graminit.h. |
| 51 | There's code in compile.c that checks that they are the same. */ |
| 52 | #define Py_single_input 256 |
| 53 | #define Py_file_input 257 |
| 54 | #define Py_eval_input 258 |
| 55 | |
| 56 | #endif /* !Py_COMPILE_H */ |