Change by BTaskaya :
--
keywords: +patch
pull_requests: +11967
stage: -> patch review
___
Python tracker
<https://bugs.python.org/issue36042>
___
___
Python-
New submission from BTaskaya :
CPython only makes these methods class method when a class created. If you set
__class_getitem__ method after the creation it doesn't work unless you use
classmethod decorator manually.
>>> class B:
... pass
...
>>> def y(*a, **
BTaskaya added the comment:
I debugged object.__new__ and i saw the subclass you are trying to initalize
doesn't have proper signature of abstract classes (it returns 0 from flags &
Py_TPFLAGS_IS_ABSTRACT)
However it has __abstractmethods__ entry. Currently i'm trying to f
Change by BTaskaya :
--
nosy: +BTaskaya
___
Python tracker
<https://bugs.python.org/issue35808>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by BTaskaya :
--
keywords: +patch, patch
pull_requests: +11239, 11240
stage: -> patch review
___
Python tracker
<https://bugs.python.org/issu
Change by BTaskaya :
--
keywords: +patch
pull_requests: +11239
stage: -> patch review
___
Python tracker
<https://bugs.python.org/issue34782>
___
___
Python-