[issue32960] dataclasses: disallow inheritance between frozen and non-frozen classes

2018-03-18 Thread Eric V. Smith
Eric V. Smith added the comment: Resolved by issue 32953. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed type: -> behavior ___ Python tracker

[issue32960] dataclasses: disallow inheritance between frozen and non-frozen classes

2018-02-26 Thread Eric V. Smith
Eric V. Smith added the comment: New changeset a93e3dc236279692eaf50b91d358da5983983b14 by Eric V. Smith (Miss Islington (bot)) in branch '3.7': bpo-32960: For dataclasses, disallow inheriting frozen from non-frozen classes and vice-versa, (GH-5919) (GH-5920) https://github.com/python/cpython

[issue32960] dataclasses: disallow inheritance between frozen and non-frozen classes

2018-02-26 Thread miss-islington
Change by miss-islington : -- pull_requests: +5691 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue32960] dataclasses: disallow inheritance between frozen and non-frozen classes

2018-02-26 Thread Eric V. Smith
Change by Eric V. Smith : -- keywords: +patch pull_requests: +5690 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-lis

[issue32960] dataclasses: disallow inheritance between frozen and non-frozen classes

2018-02-26 Thread Eric V. Smith
Eric V. Smith added the comment: See issue 32953 for a larger discussion and the ultimate resolution of this. -- ___ Python tracker ___

[issue32960] dataclasses: disallow inheritance between frozen and non-frozen classes

2018-02-26 Thread Eric V. Smith
New submission from Eric V. Smith : This is a temporary measure until we can better define how frozen inheritance should work. In the meantime, disallow: - frozen inherited from non-frozen - non-frozen inherited from frozen -- assignee: eric.smith components: Library (Lib) messages: 31