summaryrefslogtreecommitdiff
path: root/include/python2.7/compile.h
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2021-06-24 14:34:13 -0700
committerElliott Hughes <enh@google.com>2021-06-24 14:35:24 -0700
commit8afb6adb7510773c96435470a6bd3ef2632ccd27 (patch)
tree2e094b154708b0f59aed5e70dee000b9f765d7bb /include/python2.7/compile.h
parent96d94994f490d4eee9ca54f65733fa43741b232f (diff)
downloadlinux-x86-8afb6adb7510773c96435470a6bd3ef2632ccd27.tar.gz
gdb's no longer supported: use lldb instead (or "bring your own" gdb if you really need it, such as for kernel use). Test: treehugger Change-Id: Ia0ce61aff68dd19a9e453ab3272e9f46bc9b5e84
Diffstat (limited to 'include/python2.7/compile.h')
-rw-r--r--include/python2.7/compile.h40
1 files changed, 0 insertions, 40 deletions
diff --git a/include/python2.7/compile.h b/include/python2.7/compile.h
deleted file mode 100644
index 6100101..0000000
--- a/include/python2.7/compile.h
+++ /dev/null
@@ -1,40 +0,0 @@
-
-#ifndef Py_COMPILE_H
-#define Py_COMPILE_H
-
-#include "code.h"
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-/* Public interface */
-struct _node; /* Declare the existence of this type */
-PyAPI_FUNC(PyCodeObject *) PyNode_Compile(struct _node *, const char *);
-
-/* Future feature support */
-
-typedef struct {
- int ff_features; /* flags set by future statements */
- int ff_lineno; /* line number of last future statement */
-} PyFutureFeatures;
-
-#define FUTURE_NESTED_SCOPES "nested_scopes"
-#define FUTURE_GENERATORS "generators"
-#define FUTURE_DIVISION "division"
-#define FUTURE_ABSOLUTE_IMPORT "absolute_import"
-#define FUTURE_WITH_STATEMENT "with_statement"
-#define FUTURE_PRINT_FUNCTION "print_function"
-#define FUTURE_UNICODE_LITERALS "unicode_literals"
-
-
-struct _mod; /* Declare the existence of this type */
-PyAPI_FUNC(PyCodeObject *) PyAST_Compile(struct _mod *, const char *,
- PyCompilerFlags *, PyArena *);
-PyAPI_FUNC(PyFutureFeatures *) PyFuture_FromAST(struct _mod *, const char *);
-
-
-#ifdef __cplusplus
-}
-#endif
-#endif /* !Py_COMPILE_H */