]> git.proxmox.com Git - mirror_edk2.git/blobdiff - AppPkg/Applications/Python/Python-2.7.10/Include/compile.h
edk2: Remove AppPkg, StdLib, StdLibPrivateInternalFiles
[mirror_edk2.git] / AppPkg / Applications / Python / Python-2.7.10 / Include / compile.h
diff --git a/AppPkg/Applications/Python/Python-2.7.10/Include/compile.h b/AppPkg/Applications/Python/Python-2.7.10/Include/compile.h
deleted file mode 100644 (file)
index 22cb75f..0000000
+++ /dev/null
@@ -1,40 +0,0 @@
-\r
-#ifndef Py_COMPILE_H\r
-#define Py_COMPILE_H\r
-\r
-#include "code.h"\r
-\r
-#ifdef __cplusplus\r
-extern "C" {\r
-#endif\r
-\r
-/* Public interface */\r
-struct _node; /* Declare the existence of this type */\r
-PyAPI_FUNC(PyCodeObject *) PyNode_Compile(struct _node *, const char *);\r
-\r
-/* Future feature support */\r
-\r
-typedef struct {\r
-    int ff_features;      /* flags set by future statements */\r
-    int ff_lineno;        /* line number of last future statement */\r
-} PyFutureFeatures;\r
-\r
-#define FUTURE_NESTED_SCOPES "nested_scopes"\r
-#define FUTURE_GENERATORS "generators"\r
-#define FUTURE_DIVISION "division"\r
-#define FUTURE_ABSOLUTE_IMPORT "absolute_import"\r
-#define FUTURE_WITH_STATEMENT "with_statement"\r
-#define FUTURE_PRINT_FUNCTION "print_function"\r
-#define FUTURE_UNICODE_LITERALS "unicode_literals"\r
-\r
-\r
-struct _mod; /* Declare the existence of this type */\r
-PyAPI_FUNC(PyCodeObject *) PyAST_Compile(struct _mod *, const char *,\r
-                                       PyCompilerFlags *, PyArena *);\r
-PyAPI_FUNC(PyFutureFeatures *) PyFuture_FromAST(struct _mod *, const char *);\r
-\r
-\r
-#ifdef __cplusplus\r
-}\r
-#endif\r
-#endif /* !Py_COMPILE_H */\r