{"push_viewedge_back",(PyCFunction)Chain_push_viewedge_back,METH_VARARGS,"(ViewEdge ve, bool orientation) Adds a ViewEdge at the end of the chain."},
{"push_viewedge_front",(PyCFunction)Chain_push_viewedge_front,METH_VARARGS,"(ViewEdge ve, bool orientation) Adds a ViewEdge at the beginning of the chain."},
{NULL,NULL,0,NULL}
};
/*-----------------------BPy_Chain type definition ------------------------------*/
PyTypeObjectChain_Type={
PyObject_HEAD_INIT(NULL)
0,/* ob_size */
"Chain",/* tp_name */
sizeof(BPy_Chain),/* tp_basicsize */
0,/* tp_itemsize */
/* methods */
NULL,/* tp_dealloc */
NULL,/* printfunc tp_print; */
NULL,/* getattrfunc tp_getattr; */
NULL,/* setattrfunc tp_setattr; */
NULL,/* tp_compare */
NULL,/* tp_repr */
/* Method suites for standard classes */
NULL,/* PyNumberMethods *tp_as_number; */
NULL,/* PySequenceMethods *tp_as_sequence; */
NULL,/* PyMappingMethods *tp_as_mapping; */
/* More standard operations (here for binary compatibility) */
NULL,/* hashfunc tp_hash; */
NULL,/* ternaryfunc tp_call; */
NULL,/* reprfunc tp_str; */
NULL,/* getattrofunc tp_getattro; */
NULL,/* setattrofunc tp_setattro; */
/* Functions to access object as input/output buffer */
NULL,/* PyBufferProcs *tp_as_buffer; */
/*** Flags to define presence of optional/expanded features ***/
Py_TPFLAGS_DEFAULT|Py_TPFLAGS_BASETYPE,/* long tp_flags; */
NULL,/* char *tp_doc; Documentation string */
/*** Assigned meaning in release 2.0 ***/
/* call function for all accessible objects */
NULL,/* traverseproc tp_traverse; */
/* delete references to contained objects */
NULL,/* inquiry tp_clear; */
/*** Assigned meaning in release 2.1 ***/
/*** rich comparisons ***/
NULL,/* richcmpfunc tp_richcompare; */
/*** weak reference enabler ***/
0,/* long tp_weaklistoffset; */
/*** Added in release 2.2 ***/
/* Iterators */
NULL,/* getiterfunc tp_iter; */
NULL,/* iternextfunc tp_iternext; */
/*** Attribute descriptor and subclassing stuff ***/