python-2.7.6/include/cellobject.h File Reference

cellobject.h File Reference

Classes

struct  PyCellObject
 

Macros

#define PyCell_Check(op)   (Py_TYPE(op) == &PyCell_Type)
 
#define PyCell_GET(op)   (((PyCellObject *)(op))->ob_ref)
 
#define PyCell_SET(op, v)   (((PyCellObject *)(op))->ob_ref = v)
 

Functions

 PyAPI_DATA (PyTypeObject) PyCell_Type
 
 PyAPI_FUNC (PyObject *) PyCell_New(PyObject *)
 
 PyAPI_FUNC (int) PyCell_Set(PyObject *
 

Macro Definition Documentation

#define PyCell_Check (   op)    (Py_TYPE(op) == &PyCell_Type)

Definition at line 16 of file cellobject.h.

#define PyCell_GET (   op)    (((PyCellObject *)(op))->ob_ref)

Definition at line 22 of file cellobject.h.

#define PyCell_SET (   op,
  v 
)    (((PyCellObject *)(op))->ob_ref = v)

Definition at line 23 of file cellobject.h.

Function Documentation

PyAPI_DATA ( PyTypeObject  )
PyAPI_FUNC ( PyObject )
PyAPI_FUNC ( int  )

Go to the source code of this file.