summaryrefslogtreecommitdiff
path: root/Include/compile.h
diff options
context:
space:
mode:
authorJeremy Hylton <jeremy@alum.mit.edu>2001-02-27 19:07:02 +0000
committerJeremy Hylton <jeremy@alum.mit.edu>2001-02-27 19:07:02 +0000
commit4db62b1e14ed909d4bd574633a11c45455c76beb (patch)
tree3bf20f1bab90d74a8b189f5cb31da0d6fa320a2f /Include/compile.h
parented5e8234d76881fee036a3d2e642c6a7434c6eec (diff)
downloadcpython-git-4db62b1e14ed909d4bd574633a11c45455c76beb.tar.gz
Improved __future__ parser; still more to do
Makefile.pre.in: add target future.o Include/compile.h: define PyFutureFeaters and PyNode_Future() add c_future slot to struct compiling Include/symtable.h: add st_future slot to struct symtable Python/future.c: implementation of PyNode_Future() Python/compile.c: use PyNode_Future() for nested_scopes support Python/symtable.c: include compile.h to pick up PyFutureFeatures decl
Diffstat (limited to 'Include/compile.h')
-rw-r--r--Include/compile.h16
1 files changed, 13 insertions, 3 deletions
diff --git a/Include/compile.h b/Include/compile.h
index 5d65c5d297..ecc157562f 100644
--- a/Include/compile.h
+++ b/Include/compile.h
@@ -7,9 +7,6 @@
extern "C" {
#endif
-#define NESTED_SCOPES_DEFAULT 0
-#define FUTURE_NESTED_SCOPES "nested_scopes"
-
/* Bytecode object */
typedef struct {
PyObject_HEAD
@@ -51,6 +48,19 @@ DL_IMPORT(PyCodeObject *) PyCode_New(
/* same as struct above */
DL_IMPORT(int) PyCode_Addr2Line(PyCodeObject *, int);
+/* Future feature support */
+
+typedef struct {
+ int ff_last_lineno;
+ int ff_n_simple_stmt;
+ int ff_nested_scopes;
+} PyFutureFeatures;
+
+DL_IMPORT(PyFutureFeatures *) PyNode_Future(struct _node *, char *);
+
+#define NESTED_SCOPES_DEFAULT 0
+#define FUTURE_NESTED_SCOPES "nested_scopes"
+
/* for internal use only */
#define _PyCode_GETCODEPTR(co, pp) \
((*(co)->co_code->ob_type->tp_as_buffer->bf_getreadbuffer) \