]> git.proxmox.com Git - mirror_edk2.git/blobdiff - AppPkg/Applications/Python/Python-2.7.10/Include/rangeobject.h
edk2: Remove AppPkg, StdLib, StdLibPrivateInternalFiles
[mirror_edk2.git] / AppPkg / Applications / Python / Python-2.7.10 / Include / rangeobject.h
diff --git a/AppPkg/Applications/Python/Python-2.7.10/Include/rangeobject.h b/AppPkg/Applications/Python/Python-2.7.10/Include/rangeobject.h
deleted file mode 100644 (file)
index b8dcb40..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-\r
-/* Range object interface */\r
-\r
-#ifndef Py_RANGEOBJECT_H\r
-#define Py_RANGEOBJECT_H\r
-#ifdef __cplusplus\r
-extern "C" {\r
-#endif\r
-\r
-/* This is about the type 'xrange', not the built-in function range(), which\r
-   returns regular lists. */\r
-\r
-/*\r
-A range object represents an integer range.  This is an immutable object;\r
-a range cannot change its value after creation.\r
-\r
-Range objects behave like the corresponding tuple objects except that\r
-they are represented by a start, stop, and step datamembers.\r
-*/\r
-\r
-PyAPI_DATA(PyTypeObject) PyRange_Type;\r
-\r
-#define PyRange_Check(op) (Py_TYPE(op) == &PyRange_Type)\r
-\r
-#ifdef __cplusplus\r
-}\r
-#endif\r
-#endif /* !Py_RANGEOBJECT_H */\r