Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
7answers
212 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' # ...
10
votes
6answers
561 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 ...
8
votes
3answers
92 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"; ...
4
votes
2answers
80 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
97 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 ...
1
vote
1answer
339 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? ...