]> git.proxmox.com Git - mirror_edk2.git/blobdiff - AppPkg/Applications/Python/Python-2.7.2/Include/iterobject.h
edk2: Remove AppPkg, StdLib, StdLibPrivateInternalFiles
[mirror_edk2.git] / AppPkg / Applications / Python / Python-2.7.2 / Include / iterobject.h
diff --git a/AppPkg/Applications/Python/Python-2.7.2/Include/iterobject.h b/AppPkg/Applications/Python/Python-2.7.2/Include/iterobject.h
deleted file mode 100644 (file)
index ac49cb6..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-#ifndef Py_ITEROBJECT_H\r
-#define Py_ITEROBJECT_H\r
-/* Iterators (the basic kind, over a sequence) */\r
-#ifdef __cplusplus\r
-extern "C" {\r
-#endif\r
-\r
-PyAPI_DATA(PyTypeObject) PySeqIter_Type;\r
-\r
-#define PySeqIter_Check(op) (Py_TYPE(op) == &PySeqIter_Type)\r
-\r
-PyAPI_FUNC(PyObject *) PySeqIter_New(PyObject *);\r
-\r
-PyAPI_DATA(PyTypeObject) PyCallIter_Type;\r
-\r
-#define PyCallIter_Check(op) (Py_TYPE(op) == &PyCallIter_Type)\r
-\r
-PyAPI_FUNC(PyObject *) PyCallIter_New(PyObject *, PyObject *);\r
-#ifdef __cplusplus\r
-}\r
-#endif\r
-#endif /* !Py_ITEROBJECT_H */\r
-\r