blob: 5ce5b77b918968403b1e99ed880a3e61c7f8c8a6 [file] [log] [blame]
Martin v. Löwis4d0d4712010-12-03 20:14:31 +00001#ifndef Py_LIMITED_API
Fred Drakeea9cb5a2000-07-09 00:20:36 +00002#ifndef Py_COMPILE_H
3#define Py_COMPILE_H
Thomas Woutersca82a8b2006-02-28 23:09:08 +00004
5#include "code.h"
6
Fred Drakeea9cb5a2000-07-09 00:20:36 +00007#ifdef __cplusplus
8extern "C" {
9#endif
10
Guido van Rossum3f5da241990-12-20 15:06:42 +000011/* Public interface */
Guido van Rossume543a941991-04-03 19:00:55 +000012struct _node; /* Declare the existence of this type */
Martin v. Löwis95292d62002-12-11 14:04:59 +000013PyAPI_FUNC(PyCodeObject *) PyNode_Compile(struct _node *, const char *);
Guido van Rossuma3309961993-07-28 09:05:47 +000014
Jeremy Hylton4db62b12001-02-27 19:07:02 +000015/* Future feature support */
16
17typedef struct {
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000018 int ff_features; /* flags set by future statements */
19 int ff_lineno; /* line number of last future statement */
Jeremy Hylton4db62b12001-02-27 19:07:02 +000020} PyFutureFeatures;
21
Jeremy Hylton4db62b12001-02-27 19:07:02 +000022#define FUTURE_NESTED_SCOPES "nested_scopes"
Guido van Rossumb09f7ed2001-07-15 21:08:29 +000023#define FUTURE_GENERATORS "generators"
Guido van Rossum4668b002001-08-08 05:00:18 +000024#define FUTURE_DIVISION "division"
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000025#define FUTURE_ABSOLUTE_IMPORT "absolute_import"
Thomas Wouters34aa7ba2006-02-28 19:02:24 +000026#define FUTURE_WITH_STATEMENT "with_statement"
Eric Smith87824082008-03-20 23:02:08 +000027#define FUTURE_PRINT_FUNCTION "print_function"
Christian Heimes4d6ec852008-03-26 22:34:47 +000028#define FUTURE_UNICODE_LITERALS "unicode_literals"
Brett Cannone3944a52009-04-01 05:08:41 +000029#define FUTURE_BARRY_AS_BDFL "barry_as_FLUFL"
Guido van Rossum4668b002001-08-08 05:00:18 +000030
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000031struct _mod; /* Declare the existence of this type */
Georg Brandl8334fd92010-12-04 10:26:46 +000032#define PyAST_Compile(mod, s, f, ar) PyAST_CompileEx(mod, s, f, -1, ar)
Victor Stinner00676d12010-12-27 01:49:31 +000033PyAPI_FUNC(PyCodeObject *) PyAST_CompileEx(
34 mod_ty mod,
35 const char *filename, /* decoded from the filesystem encoding */
36 PyCompilerFlags *flags,
37 int optimize,
38 PyArena *arena);
Neal Norwitz38eb50b2005-10-23 19:06:02 +000039PyAPI_FUNC(PyFutureFeatures *) PyFuture_FromAST(struct _mod *, const char *);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000040
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000041
Guido van Rossuma3309961993-07-28 09:05:47 +000042#ifdef __cplusplus
43}
44#endif
45#endif /* !Py_COMPILE_H */
Martin v. Löwis4d0d4712010-12-03 20:14:31 +000046#endif /* !Py_LIMITED_API */