[issue26306] Can't create abstract tuple

2016-05-25 Thread R. David Murray
Changes by R. David Murray : -- resolution: -> duplicate stage: test needed -> resolved status: open -> closed superseder: -> abstract class instantiable when subclassing dict ___ Python tracker _

[issue26306] Can't create abstract tuple

2016-05-24 Thread Luiz Poleto
Luiz Poleto added the comment: Same as reported on issue #5996. Apparently this happens not only with tuple but with any builtin type. There is a patch on that issue but there hasn't been any activity since 2011. -- nosy: +luiz.poleto ___ Python tra

[issue26306] Can't create abstract tuple

2016-02-12 Thread Terry J. Reedy
Terry J. Reedy added the comment: 3.2 to 3.4 only get security fixes -- components: +Library (Lib) nosy: +terry.reedy stage: -> test needed versions: +Python 3.6 -Python 3.2, Python 3.3, Python 3.4 ___ Python tracker

[issue26306] Can't create abstract tuple

2016-02-12 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- nosy: -terry.reedy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue26306] Can't create abstract tuple

2016-02-08 Thread Maciej Szulik
Changes by Maciej Szulik : -- nosy: +maciej.szulik ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue26306] Can't create abstract tuple

2016-02-08 Thread Jack Hargreaves
New submission from Jack Hargreaves: When creating an abstract class, subclassing tuple causes check for instantiation of an abstract class to be bypassed. See the associated stackoverflow question -- http://stackoverflow.com/questions/35267954/mix-in-of-abstract-class-and-namedtuple from