The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
95 views

Automatically making a class hashable

There are several standard ways to make a class hashable, for example (borrowing from SO): # assume X has 2 attributes: attr_a and attr_b class X: def __key(self): return (self.attr_a, ...
5
votes
3answers
250 views

What makes a user-defined class unhashable?

The docs say that a class is hashable as long as it defines __hash__ method and __eq__ method. However: class X(list): # read-only interface of `tuple` and `list` should be the same, so reuse ...
-1
votes
3answers
175 views

Making a list subclass hashable [closed]

I want to derive a class from list, add a few instance attributes to it, and make it hashable. What is a good (fast and neat) way to do it? UPDATE: I deleted a lengthy explanation of a use case. I ...
8
votes
3answers
179 views

How to test for “immutability-at-any-depth” in Python?

I'm defining a Python object as being "immutable at any depth" iff it is (nominally) immutable; and if it is a "container" object, then it contains only objects that are "immutable at any depth"; ...
1
vote
1answer
179 views

Unable to use a tuple as a dictionary key?

The code is a little complex, sorry. Please focus on the parallel_p function. Although sign is a tuple, Python complains: if sign in hashtable and gives a TypeError. Why is sign a numpy.ndarray ...
15
votes
7answers
622 views

Why can't I use a list as a dict key in python?

I'm a bit confused about what can/can't be used as a key for a python dict. dicked = {} dicked[None] = 'foo' # None ok dicked[(1,3)] = 'baz' # tuple ok import sys dicked[sys] = 'bar' # ...
4
votes
2answers
198 views

Using @functools.lru_cache with dictionary arguments

I have a method that takes (among others) a dictionary as an argument. The method is parsing strings and the dictionary provides replacements for some substrings, so it doesn't have to be mutable. ...
1
vote
1answer
606 views

Network Connection Warning

The Tweetie (now Twitter) app has a pop up Network Reachability warning. This also done in the Foursquare and Hashable apps (as far as I know). Is there example code of this implementation somewhere? ...
12
votes
6answers
2k views

Check for mutability in Python?

Consider this code: a = {...} # a is an dict with arbitrary contents b = a.copy() What role does mutability play in the keys and values of the dicts? How do I ensure changes to keys or values of ...