/external/python/cpython3/Doc/howto/ |
D | descriptor.rst | 29 :meth:`__delete__`. If any of those methods are defined for an object, it is 55 ``descr.__delete__(self, obj) -> None`` 229 def __delete__(self, obj):
|
/external/python/cpython3/Lib/ |
D | types.py | 178 def __delete__(self, instance): member in DynamicClassAttribute
|
/external/python/cpython2/Doc/howto/ |
D | descriptor.rst | 29 :meth:`__delete__`. If any of those methods are defined for an object, it is 57 ``descr.__delete__(self, obj) --> None`` 235 def __delete__(self, obj):
|
/external/python/cpython3/Lib/test/ |
D | test_descr.py | 1683 def __delete__(self, obj): member in ClassPropertiesAndMethods.test_compattr.C.computed_attribute 2189 C.x.__delete__(a) 4583 type(X).__dict__["__doc__"].__delete__(X)
|
D | test_inspect.py | 2175 test_unbound_method(property.__delete__)
|
/external/python/cpython2/Doc/reference/ |
D | datamodel.rst | 1581 .. method:: object.__delete__(self, instance) 1593 protocol: :meth:`__get__`, :meth:`__set__`, and :meth:`__delete__`. If any of 1631 of :meth:`__get__`, :meth:`__set__` and :meth:`__delete__`. If it does not 1634 the descriptor defines :meth:`__set__` and/or :meth:`__delete__`, it is a data
|
/external/python/cpython3/Doc/reference/ |
D | datamodel.rst | 1634 .. method:: object.__delete__(self, instance) 1662 protocol: :meth:`__get__`, :meth:`__set__`, and :meth:`__delete__`. If any of 1698 of :meth:`__get__`, :meth:`__set__` and :meth:`__delete__`. If it does not 1701 the descriptor defines :meth:`__set__` and/or :meth:`__delete__`, it is a data
|
/external/python/cpython2/Lib/test/ |
D | test_descr.py | 1550 def __delete__(self, obj): member in ClassPropertiesAndMethods.test_compattr.C.computed_attribute 2157 C.x.__delete__(a)
|
/external/python/cpython2/Doc/ |
D | glossary.rst | 170 :meth:`__set__`, or :meth:`__delete__`. When a class attribute is a
|
/external/python/cpython3/Doc/library/ |
D | unittest.mock.rst | 1711 * Descriptor methods: ``__get__``, ``__set__`` and ``__delete__`` 1838 * ``__get__``, ``__set__`` and ``__delete__``
|
/external/python/cpython3/Doc/ |
D | glossary.rst | 278 :meth:`__delete__`. When a class attribute is a descriptor, its special
|
/external/python/cpython2/Doc/whatsnew/ |
D | 2.2.rst | 181 * ``__delete__(object, value)`` deletes the *value* attribute of *object*.
|
/external/python/cpython3/Doc/whatsnew/ |
D | 2.2.rst | 181 * ``__delete__(object, value)`` deletes the *value* attribute of *object*.
|
/external/python/cpython3/Objects/ |
D | typeobject.c | 6585 _Py_IDENTIFIER(__delete__); in slot_tp_descr_set()
|
/external/python/cpython3/Misc/ |
D | HISTORY | 2222 property.__delete__ builtins. 23491 __delete__, not __del__. In previous releases, it was mistakenly
|
/external/python/cpython2/Misc/ |
D | HISTORY | 6107 __delete__, not __del__. In previous releases, it was mistakenly
|