Message248114
Similar inconsistent behavior for:
class Object(object): pass
class Integer(Object, int): pass
versus
class Integer(object, int): pass
However, I'm successfully using the first version, which saves some boilerplate code for emulating ints. Instances of Integer seem to behave exactly like ints. Personally, I wouldn't like to loose this ability. (May I shouldn't have created this ticket :). |
|
| Date |
User |
Action |
Args |
| 2015-08-06 08:58:49 | brechtm | set | recipients:
+ brechtm, arigo |
| 2015-08-06 08:58:49 | brechtm | set | messageid: <1438851529.55.0.595655666775.issue24806@psf.upfronthosting.co.za> |
| 2015-08-06 08:58:49 | brechtm | link | issue24806 messages |
| 2015-08-06 08:58:49 | brechtm | create | |
|