Would anyone have a list of special python properties that begin and end with a double underscore with a brief explanation of their functionality?
Something along the following lines:
{
"__slots__": "an iterable that restricts a set of admissible methods in a class",
"__imul__": "*=",
"__doc__": "docstring",
}
All that information is in the Data Model section of Python docs