Call super in Generic.__init_subclass__ (#6356)

This commit is contained in:
Ivan Levkivskyi 2018-04-04 17:00:15 +01:00 committed by GitHub
parent 2eeac269dd
commit ee566fe526
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 20 additions and 0 deletions

View file

@ -850,6 +850,7 @@ class Generic:
return _GenericAlias(cls, params)
def __init_subclass__(cls, *args, **kwargs):
super().__init_subclass__(*args, **kwargs)
tvars = []
if '__orig_bases__' in cls.__dict__:
error = Generic in cls.__orig_bases__