PATH:
usr
/
include
/
python2.7
/* Generator object interface */ #ifndef Py_GENOBJECT_H #define Py_GENOBJECT_H #ifdef __cplusplus extern "C" { #endif struct _frame; /* Avoid including frameobject.h */ typedef struct { PyObject_HEAD /* The gi_ prefix is intended to remind of generator-iterator. */ /* Note: gi_frame can be NULL if the generator is "finished" */ struct _frame *gi_frame; /* True if generator is being executed. */ int gi_running; /* The code object backing the generator */ PyObject *gi_code; /* List of weak reference. */ PyObject *gi_weakreflist; } PyGenObject; PyAPI_DATA(PyTypeObject) PyGen_Type; #define PyGen_Check(op) PyObject_TypeCheck(op, &PyGen_Type) #define PyGen_CheckExact(op) (Py_TYPE(op) == &PyGen_Type) PyAPI_FUNC(PyObject *) PyGen_New(struct _frame *); PyAPI_FUNC(int) PyGen_NeedsFinalizing(PyGenObject *); #ifdef __cplusplus } #endif #endif /* !Py_GENOBJECT_H */
[-] pydebug.h
[open]
[-] eval.h
[open]
[-] longobject.h
[open]
[+]
..
[-] descrobject.h
[open]
[-] iterobject.h
[open]
[-] bufferobject.h
[open]
[-] ceval.h
[open]
[-] sliceobject.h
[open]
[-] pystrcmp.h
[open]
[-] opcode.h
[open]
[-] pyexpat.h
[open]
[-] fileobject.h
[open]
[-] symtable.h
[open]
[-] frameobject.h
[open]
[-] errcode.h
[open]
[-] objimpl.h
[open]
[-] structseq.h
[open]
[-] pystate.h
[open]
[-] object.h
[open]
[-] sysmodule.h
[open]
[-] token.h
[open]
[-] moduleobject.h
[open]
[-] graminit.h
[open]
[-] floatobject.h
[open]
[-] complexobject.h
[open]
[-] ucnhash.h
[open]
[-] listobject.h
[open]
[-] py_curses.h
[open]
[-] pyarena.h
[open]
[-] cobject.h
[open]
[-] asdl.h
[open]
[-] pgenheaders.h
[open]
[-] pyfpe.h
[open]
[-] pyconfig.h
[open]
[-] marshal.h
[open]
[-] bitset.h
[open]
[-] pystrtod.h
[open]
[-] intrcheck.h
[open]
[-] traceback.h
[open]
[-] parsetok.h
[open]
[-] osdefs.h
[open]
[-] pyctype.h
[open]
[-] abstract.h
[open]
[-] pymacconfig.h
[open]
[-] metagrammar.h
[open]
[-] setobject.h
[open]
[-] bytearrayobject.h
[open]
[-] modsupport.h
[open]
[-] pythonrun.h
[open]
[-] pgen.h
[open]
[-] enumobject.h
[open]
[-] longintrepr.h
[open]
[-] genobject.h
[open]
[-] datetime.h
[open]
[-] bytes_methods.h
[open]
[-] boolobject.h
[open]
[-] pyport.h
[open]
[-] dtoa.h
[open]
[-] weakrefobject.h
[open]
[-] memoryobject.h
[open]
[-] pygetopt.h
[open]
[-] cellobject.h
[open]
[-] Python.h
[open]
[-] pyconfig-64.h
[open]
[-] pymem.h
[open]
[-] compile.h
[open]
[-] bytesobject.h
[open]
[-] pycapsule.h
[open]
[-] code.h
[open]
[-] codecs.h
[open]
[-] pyerrors.h
[open]
[-] tupleobject.h
[open]
[-] grammar.h
[open]
[-] funcobject.h
[open]
[-] structmember.h
[open]
[-] node.h
[open]
[-] stringobject.h
[open]
[-] ast.h
[open]
[-] pymactoolbox.h
[open]
[-] cStringIO.h
[open]
[-] rangeobject.h
[open]
[-] intobject.h
[open]
[-] warnings.h
[open]
[-] methodobject.h
[open]
[-] import.h
[open]
[-] patchlevel.h
[open]
[-] classobject.h
[open]
[-] pythread.h
[open]
[-] Python-ast.h
[open]
[-] unicodeobject.h
[open]
[-] pymath.h
[open]
[-] dictobject.h
[open]
[-] timefuncs.h
[open]