Lines Matching defs:object

46 /* macros used to store 'join' flags in string object pointers.  note
47 that all use of text and tail as object pointers must be wrapped in
91 /* Given a module object (assumed to be _elementtree), get its per-module
155 /* Is the given object an empty dictionary?
169 /* attributes (a dictionary object), or NULL if no attributes */
190 use JOIN_OBJ to get the object pointer. the join flag is used
198 pointer; use JOIN_OBJ to get the object pointer. */
676 subelement: object(subclass_of='&Element_Type')
759 memo: object(subclass_of="&PyDict_Type")
830 /* add object to memo dictionary (so deepcopy won't visit it again) */
850 deepcopy(PyObject *object, PyObject *memo)
852 /* do a deep copy of the given object */
857 if (object == Py_None || PyUnicode_CheckExact(object)) {
858 Py_INCREF(object);
859 return object;
862 if (Py_REFCNT(object) == 1) {
863 if (PyDict_CheckExact(object)) {
867 while (PyDict_Next(object, &pos, &key, &value)) {
874 return PyDict_Copy(object);
877 else if (Element_CheckExact(object)) {
879 (ElementObject *)object, memo);
891 stack[0] = object;
1091 state: object
1168 elements: object
1208 path: object
1209 namespaces: object = None
1250 path: object
1251 default: object = None
1252 namespaces: object = None
1305 path: object
1306 namespaces: object = None
1353 path: object
1354 namespaces: object = None
1374 key: object
1375 default: object = None
1406 tag: object = None
1463 subelement: object(subclass_of='&Element_Type')
1544 tag: object
1545 attrib: object(subclass_of='&PyDict_Type')
1571 subelement: object(subclass_of='&Element_Type')
1647 key: object
1648 value: object
2387 element_factory: object = None
2389 comment_factory: object = None
2390 pi_factory: object = None
2498 comment_factory: object
2499 pi_factory: object
2926 data: object
2941 tag: object
2956 text: object
2971 target: object
2972 text: object = None
3016 tag: object
3017 attrs: object(subclass_of='&PyDict_Type')
3627 target: object = None
3877 data: object
3923 file: object
3945 /* read from open file object */
3957 /* A unicode object is encoded into bytes using UTF-8 */
4011 events_queue: object
4012 events_to_report: object = None
4382 /* Initialize object types */