gooderp18绿色标准版
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

28 rindas
630B

  1. /* Range object interface */
  2. #ifndef Py_RANGEOBJECT_H
  3. #define Py_RANGEOBJECT_H
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7. /*
  8. A range object represents an integer range. This is an immutable object;
  9. a range cannot change its value after creation.
  10. Range objects behave like the corresponding tuple objects except that
  11. they are represented by a start, stop, and step datamembers.
  12. */
  13. PyAPI_DATA(PyTypeObject) PyRange_Type;
  14. PyAPI_DATA(PyTypeObject) PyRangeIter_Type;
  15. PyAPI_DATA(PyTypeObject) PyLongRangeIter_Type;
  16. #define PyRange_Check(op) Py_IS_TYPE((op), &PyRange_Type)
  17. #ifdef __cplusplus
  18. }
  19. #endif
  20. #endif /* !Py_RANGEOBJECT_H */
上海开阖软件有限公司 沪ICP备12045867号-1