FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
cpython/Include/rangeobject.h at pythoninfo-add-vpath · FFY00/cpython · GitHub
FFY00
/
cpython
Public
forked from
python/cpython
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
6
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
cpython
/
Include
/
rangeobject.h
Copy path
More file actions
More file actions
Latest commit
History
History
History
27 lines (20 loc) · 630 Bytes
Breadcrumbs
cpython
/
Include
/
rangeobject.h
Copy path
File metadata and controls
27 lines (20 loc) · 630 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* 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_IS_TYPE((op), &PyRange_Type)
#ifdef
__cplusplus
}
#endif
#endif
/* !Py_RANGEOBJECT_H */
Back
|
FazBrowse Home
|
New Git URL