[issue43827] abc conflicts with __init_subclass__

2021-11-21 Thread Oleg Iarygin
Oleg Iarygin added the comment: Paul, PR OP made all changes requested; could you re-review please? -- nosy: +arhadthedev, p-ganssle ___ Python tracker ___ ___

[issue43827] abc conflicts with __init_subclass__

2021-04-16 Thread Terry J. Reedy
Change by Terry J. Reedy : -- nosy: +rhettinger, stutzbach type: crash -> behavior ___ Python tracker ___ ___ Python-bugs-list maili

[issue43827] abc conflicts with __init_subclass__

2021-04-13 Thread Vlad Hoi
Change by Vlad Hoi : -- keywords: +patch pull_requests: +24117 stage: -> patch review pull_request: https://github.com/python/cpython/pull/25385 ___ Python tracker ___ ___

[issue43827] abc conflicts with __init_subclass__

2021-04-13 Thread Vlad Hoi
New submission from Vlad Hoi : from abc import ABC class A: def __init_subclass__(self): pass class B(ABC, A, name="name"): pass After initialising class B, this exception occurs, because multiple "name" arguments where provided: Traceback (most recent call last): File