]> git.proxmox.com Git - mirror_edk2.git/blobdiff - AppPkg/Applications/Python/Python-2.7.2/Include/warnings.h
edk2: Remove AppPkg, StdLib, StdLibPrivateInternalFiles
[mirror_edk2.git] / AppPkg / Applications / Python / Python-2.7.2 / Include / warnings.h
diff --git a/AppPkg/Applications/Python/Python-2.7.2/Include/warnings.h b/AppPkg/Applications/Python/Python-2.7.2/Include/warnings.h
deleted file mode 100644 (file)
index bf8f963..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-#ifndef Py_WARNINGS_H\r
-#define Py_WARNINGS_H\r
-#ifdef __cplusplus\r
-extern "C" {\r
-#endif\r
-\r
-PyAPI_FUNC(void) _PyWarnings_Init(void);\r
-\r
-PyAPI_FUNC(int) PyErr_WarnEx(PyObject *, const char *, Py_ssize_t);\r
-PyAPI_FUNC(int) PyErr_WarnExplicit(PyObject *, const char *, const char *, int,\r
-                                    const char *, PyObject *);\r
-\r
-#define PyErr_WarnPy3k(msg, stacklevel) \\r
-  (Py_Py3kWarningFlag ? PyErr_WarnEx(PyExc_DeprecationWarning, msg, stacklevel) : 0)\r
-\r
-/* DEPRECATED: Use PyErr_WarnEx() instead. */\r
-#define PyErr_Warn(category, msg) PyErr_WarnEx(category, msg, 1)\r
-\r
-#ifdef __cplusplus\r
-}\r
-#endif\r
-#endif /* !Py_WARNINGS_H */\r
-\r