Commit dadbcffa authored by Stefan Behnel's avatar Stefan Behnel

Add missing special signature for "__getattribute__" method in order to...

Add missing special signature for "__getattribute__" method in order to enforce it and mark the method as special.
parent d881105c
...@@ -891,6 +891,7 @@ MethodSlot(objargproc, "", "__delitem__") ...@@ -891,6 +891,7 @@ MethodSlot(objargproc, "", "__delitem__")
MethodSlot(ssizessizeobjargproc, "", "__setslice__") MethodSlot(ssizessizeobjargproc, "", "__setslice__")
MethodSlot(ssizessizeargproc, "", "__delslice__") MethodSlot(ssizessizeargproc, "", "__delslice__")
MethodSlot(getattrofunc, "", "__getattr__") MethodSlot(getattrofunc, "", "__getattr__")
MethodSlot(getattrofunc, "", "__getattribute__")
MethodSlot(setattrofunc, "", "__setattr__") MethodSlot(setattrofunc, "", "__setattr__")
MethodSlot(delattrofunc, "", "__delattr__") MethodSlot(delattrofunc, "", "__delattr__")
MethodSlot(descrgetfunc, "", "__get__") MethodSlot(descrgetfunc, "", "__get__")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment