Staging
v0.5.1
https://github.com/python/cpython
Revision 4f1eaf028058cc357030dfaa5e611c90662539f0 authored by Miss Islington (bot) on 01 December 2019, 23:24:17 UTC, committed by GitHub on 01 December 2019, 23:24:17 UTC

* bpo-38449: Add tricky test cases

* bpo-38449: Reflect codereview
(cherry picked from commit 2fe4c48917c2d1b40cf063c6ed22ae2e71f4cb62)

Co-authored-by: Dong-hee Na <donghee.na92@gmail.com>
1 parent d300c0e
Raw File
Tip revision: 4f1eaf028058cc357030dfaa5e611c90662539f0 authored by Miss Islington (bot) on 01 December 2019, 23:24:17 UTC
bpo-38449: Add URL delimiters test cases (GH-16729)
Tip revision: 4f1eaf0
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