]> git.proxmox.com Git - mirror_edk2.git/blobdiff - AppPkg/Applications/Python/Python-2.7.2/Include/pydebug.h
edk2: Remove AppPkg, StdLib, StdLibPrivateInternalFiles
[mirror_edk2.git] / AppPkg / Applications / Python / Python-2.7.2 / Include / pydebug.h
diff --git a/AppPkg/Applications/Python/Python-2.7.2/Include/pydebug.h b/AppPkg/Applications/Python/Python-2.7.2/Include/pydebug.h
deleted file mode 100644 (file)
index cc6363b..0000000
+++ /dev/null
@@ -1,40 +0,0 @@
-\r
-#ifndef Py_PYDEBUG_H\r
-#define Py_PYDEBUG_H\r
-#ifdef __cplusplus\r
-extern "C" {\r
-#endif\r
-\r
-PyAPI_DATA(int) Py_DebugFlag;\r
-PyAPI_DATA(int) Py_VerboseFlag;\r
-PyAPI_DATA(int) Py_InteractiveFlag;\r
-PyAPI_DATA(int) Py_InspectFlag;\r
-PyAPI_DATA(int) Py_OptimizeFlag;\r
-PyAPI_DATA(int) Py_NoSiteFlag;\r
-PyAPI_DATA(int) Py_BytesWarningFlag;\r
-PyAPI_DATA(int) Py_UseClassExceptionsFlag;\r
-PyAPI_DATA(int) Py_FrozenFlag;\r
-PyAPI_DATA(int) Py_TabcheckFlag;\r
-PyAPI_DATA(int) Py_UnicodeFlag;\r
-PyAPI_DATA(int) Py_IgnoreEnvironmentFlag;\r
-PyAPI_DATA(int) Py_DivisionWarningFlag;\r
-PyAPI_DATA(int) Py_DontWriteBytecodeFlag;\r
-PyAPI_DATA(int) Py_NoUserSiteDirectory;\r
-/* _XXX Py_QnewFlag should go away in 3.0.  It's true iff -Qnew is passed,\r
-  on the command line, and is used in 2.2 by ceval.c to make all "/" divisions\r
-  true divisions (which they will be in 3.0). */\r
-PyAPI_DATA(int) _Py_QnewFlag;\r
-/* Warn about 3.x issues */\r
-PyAPI_DATA(int) Py_Py3kWarningFlag;\r
-\r
-/* this is a wrapper around getenv() that pays attention to\r
-   Py_IgnoreEnvironmentFlag.  It should be used for getting variables like\r
-   PYTHONPATH and PYTHONHOME from the environment */\r
-#define Py_GETENV(s) (Py_IgnoreEnvironmentFlag ? NULL : getenv(s))\r
-\r
-PyAPI_FUNC(void) Py_FatalError(const char *message);\r
-\r
-#ifdef __cplusplus\r
-}\r
-#endif\r
-#endif /* !Py_PYDEBUG_H */\r