Search code examples
Why does __get__ take an owner while __set__ and __delete__ do not?...


pythonattributesdatamodelpython-descriptors

Read More
Is there a way to set an instance variable without calling a descriptors __set__ method?...


pythonooppropertiespycharmpython-descriptors

Read More
Is there a better way of detecting when attributes are changed than using decorators?...


pythonooppropertiespython-descriptors

Read More
typing: How to bind owner class to generic descriptor?...


pythonpython-typingmypypython-descriptors

Read More
Type hinting with descriptors...


pythonmypypython-descriptors

Read More
Python type-checking Protocols and Descriptors...


pythonpython-typingmypypython-descriptors

Read More
How to type hint python magic __get__ method...


pythonpython-typingmagic-methodspython-descriptors

Read More
Accessing attributes of a Python Descriptor...


pythonpython-descriptors

Read More
How to get a variable name from within the function it call for assignment?...


pythonpython-descriptors

Read More
how to add methods to descriptors or properties in python...


pythonooppython-descriptors

Read More
Setting a class __name__ declaratively...


pythonmetaclasspython-datamodelpython-descriptorspython-object

Read More
Same attribute name of an object in python descriptor and __init__ function...


pythonpython-descriptors

Read More
Why is __get__() specified to have an optional third argument?...


pythonpython-descriptors

Read More
Let a passed function object be called as a method...


pythonpython-descriptors

Read More
Python dunder methods wrapped as property...


pythonpython-descriptorspython-datamodel

Read More
Why setting __set__ function for method descriptor does not make it data-descriptor?...


pythonpython-descriptors

Read More
Using a cached property on a named tuple...


pythoncachingpropertiesnamedtuplepython-descriptors

Read More
Descriptor's __set__ not invoked...


pythonpython-decoratorsinner-classespython-descriptors

Read More
Why does property override object.__getattribute__?...


pythonpython-descriptors

Read More
Why cls.__getattribute__ returns a function instead of a bound method whereas cls.__call__ returns a...


pythongetattributepython-descriptors

Read More
Getting the base class in a descriptor called via super()...


pythoninheritancepython-descriptors

Read More
Understanding __get__ and __set__ and Python descriptors...


pythonpython-descriptors

Read More
Descriptors in python for implementing perl's tie scalar operation...


pythonpython-descriptors

Read More
Does function know about the class before binding...


pythonmethodsmetaprogrammingpython-descriptors

Read More
What is the proper way to use descriptors as fields in Python dataclasses?...


pythonpython-dataclassespython-descriptors

Read More
Set property on a function object...


pythonfunctionpropertiesgetattrpython-descriptors

Read More
Why is `__dict__` attribute of a custom Python class instance a descriptor of the class, instead of ...


pythonpython-3.xpython-descriptors

Read More
How do I tell pylint about a descriptor providing access to iterables, subscriptables?...


pythonpython-decoratorspylintpython-descriptors

Read More
`__set_name__` hook manually added to `functools.wraps()` descriptor instance never called...


pythondecoratorpython-decoratorsmetaclasspython-descriptors

Read More
What does "exception raising placeholder" mean in the Descriptor HowTo Guide?...


pythonexceptionpython-descriptors

Read More
BackNext