Tagged Questions

3
votes
2answers
1k views

How to modify the Python 'default' dictionary so that it always returns a default value

I'm using all of them to print the names of assigned IANA values in a packet. So all of the dictionaries have the same default value "RESERVED". I don't want to use d.get(key,default) but access ...
0
votes
1answer
132 views

How to raise custom dictionary KeyError message

I'm writing some scripts that will be used by non-python users. I have a Config class that has dictionaries and I'd like to be able to raise a custom exception for KeyError. Is there an elegant way ...