19
votes
3answers
427 views

Subclassing builtin types in Python 2 and Python 3

When subclassing builtin types, I noticed a rather important difference between Python 2 and Python 3 in the return type of the methods of the built-in types. The following code illustrates this for ...
3
votes
4answers
249 views

Redefining Pythons builtin datatypes

Is it possible to redefine which object the brackets [] use? I can subclass the list object, but how to I make the interpreter use my subclass in place of the buildin list object? Is it possible? ...
2
votes
3answers
722 views

subclassing float to force fixed point printing precision in python

[Python 3.1] I'm following up on this answer: class prettyfloat(float): def __repr__(self): return "%0.2f" % self I know I need to keep track of my float literals (i.e., replace 3.0 with ...