Staging
v0.5.1
https://github.com/python/cpython
Revision 833beab0e6e55aa0486d7c62acbeb7162da73bad authored by Benjamin Peterson on 30 September 2008, 01:46:48 UTC, committed by Benjamin Peterson on 30 September 2008, 01:46:48 UTC
1 parent a702fd5
Raw File
Tip revision: 833beab0e6e55aa0486d7c62acbeb7162da73bad authored by Benjamin Peterson on 30 September 2008, 01:46:48 UTC
backport r66689: imageop could segfault due to poor argument validation
Tip revision: 833beab
rangeobject.h

/* Range object interface */

#ifndef Py_RANGEOBJECT_H
#define Py_RANGEOBJECT_H
#ifdef __cplusplus
extern "C" {
#endif

/* This is about the type 'xrange', not the built-in function range(), which
   returns regular lists. */

/*
A range object represents an integer range.  This is an immutable object;
a range cannot change its value after creation.

Range objects behave like the corresponding tuple objects except that
they are represented by a start, stop, and step datamembers.
*/

PyAPI_DATA(PyTypeObject) PyRange_Type;

#define PyRange_Check(op) ((op)->ob_type == &PyRange_Type)

#ifdef __cplusplus
}
#endif
#endif /* !Py_RANGEOBJECT_H */
back to top