Tagged Questions
1
vote
1answer
43 views
Custom comparison functions for built-in types in Python
I am using Python's built-in sets to hold objects of a class I have defined. For this class, I defined __eq__, __ne__, and __hash__ so that I can compare objects by my custom comparison functions. ...
-2
votes
1answer
76 views
Can `dict` replace `list` when memory is not a concern? [closed]
I could represent any list as a dictionary whose keys are the valid list indices, and whose values are the list's items. E.g., [5, 6, 'a'] would be represented as {0:5, 1:6, 2:'a'}.
In terms of ...
1
vote
3answers
161 views
How to make python class support item assignment?
While looking over some code in Think Complexity, I noticed their Graph class assigning values to itself. I've copied a few important lines from that class and written an example class, ObjectChild, ...
1
vote
1answer
195 views
python override built-in classes, in particular, dictionary class
I've never really like the way the dictionary class is converted into a string so I wrote a subclass which overrides the repr method (this method uses tabs to representing the level of nesting in the ...
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 ...
1
vote
7answers
403 views
use type() information to cast values stored as strings
In my application I have generated a number of values (three columns, of type int, str and datetime, see example below) and these values are stored in a flat file as comma-separated strings. ...
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?
...
0
votes
3answers
266 views
Python: Inheriting builtin types dict and list [closed]
I have always been confused and falling over the minute details while inheriting the builtin types in Python e.g. list and dict.
Can you please point to the tutorials and docs which give a ...
5
votes
1answer
265 views
Inheriting behaviours for set and frozenset seem to differ
Can someone explain the following behaviour:
class derivedset1(frozenset):
def __new__(cls,*args):
return frozenset.__new__(cls,args)
class derivedset2(set):
def ...
3
votes
2answers
422 views
problem subclassing builtin type
# Python 3
class Point(tuple):
def __init__(self, x, y):
super().__init__((x, y))
Point(2, 3)
would result in
TypeError: tuple() takes at most 1
argument (2 given)
Why? What ...
8
votes
2answers
1k views
Can I add custom methods/attributes to built-in Python types?
For example—say I want to add a helloWorld() method to Python's dict type. Can I do this?
JavaScript has a prototype object that behaves this way. Maybe it's bad design and I should subclass ...
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 ...
22
votes
4answers
5k views
What is the difference between isinstance('aaa', basestring) and isinstance('aaa', str)?
a='aaaa'
print isinstance(a, basestring)#true
print isinstance(a, str)#true