Lines Matching defs:new
1 /* Descriptors -- a new, flexible way to describe attributes */
1024 /* This has no reason to be in this file except that adding new files is a
1266 /* This has no reason to be in this file except that adding new files is a
1696 PyObject *new, *type, *doc;
1722 new = PyObject_CallFunctionObjArgs(type, get, set, del, doc, NULL);
1724 if (new == NULL)
1726 if (PyObject_TypeCheck((new), &PyProperty_Type)) {
1728 Py_XSETREF(((propertyobject *) new)->prop_name, pold->prop_name);
1730 return new;
1755 Decorators make defining new properties or modifying existing ones easy: