Staging
v0.5.1
https://github.com/python/cpython
Revision a3c2c5f15ba5b4ad6fb86b3320d0464f1c502fd2 authored by Miss Islington (bot) on 20 February 2020, 18:37:23 UTC, committed by GitHub on 20 February 2020, 18:37:23 UTC
(cherry picked from commit 1246d892038a693304549f8574e6c2784b91589a)

Co-authored-by: Stefan Krah <skrah@bytereef.org>

Co-authored-by: Stefan Krah <skrah@bytereef.org>
1 parent 2574910
Raw File
Tip revision: a3c2c5f15ba5b4ad6fb86b3320d0464f1c502fd2 authored by Miss Islington (bot) on 20 February 2020, 18:37:23 UTC
Use the new recommended number of repetitions in the refleak tests. (GH-18569) (#18575)
Tip revision: a3c2c5f
rangeobject.h

/* Range object interface */

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

/*
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;
PyAPI_DATA(PyTypeObject) PyRangeIter_Type;
PyAPI_DATA(PyTypeObject) PyLongRangeIter_Type;

#define PyRange_Check(op) (Py_TYPE(op) == &PyRange_Type)

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