Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ExeBy/smexe_ro.../usr/include/python2....
File: rangeobject.h
[0] Fix | Delete
/* Range object interface */
[1] Fix | Delete
[2] Fix | Delete
#ifndef Py_RANGEOBJECT_H
[3] Fix | Delete
#define Py_RANGEOBJECT_H
[4] Fix | Delete
#ifdef __cplusplus
[5] Fix | Delete
extern "C" {
[6] Fix | Delete
#endif
[7] Fix | Delete
[8] Fix | Delete
/* This is about the type 'xrange', not the built-in function range(), which
[9] Fix | Delete
returns regular lists. */
[10] Fix | Delete
[11] Fix | Delete
/*
[12] Fix | Delete
A range object represents an integer range. This is an immutable object;
[13] Fix | Delete
a range cannot change its value after creation.
[14] Fix | Delete
[15] Fix | Delete
Range objects behave like the corresponding tuple objects except that
[16] Fix | Delete
they are represented by a start, stop, and step datamembers.
[17] Fix | Delete
*/
[18] Fix | Delete
[19] Fix | Delete
PyAPI_DATA(PyTypeObject) PyRange_Type;
[20] Fix | Delete
[21] Fix | Delete
#define PyRange_Check(op) (Py_TYPE(op) == &PyRange_Type)
[22] Fix | Delete
[23] Fix | Delete
#ifdef __cplusplus
[24] Fix | Delete
}
[25] Fix | Delete
#endif
[26] Fix | Delete
#endif /* !Py_RANGEOBJECT_H */
[27] Fix | Delete
[28] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function