2
votes
Python module functions used in unexpected ways
Oft overlooked modules, uses and tricks:
collections.defaultdict(): for when you want missing keys in a dict to have a default value.
functools.wraps(): for writing decorators that …
7
votes
Does an application-wide exception handler make sense?
A destructor (as in a __del__ method) is a bad idea, as these are not guaranteed to be called. The atexit module is a safer approach, although these will still not fire if the Python interpreter cr …
183
votes
Hidden features of Python
Chaining comparison operators:
>>> x = 5
>>> 1 < x < 10
True
>>> 10 < x < 20
False
>>> x < 10 < x*10 < 100 …
2
votes
Hidden features of Python
Everything is dynamic
"There is no compile-time". Everything in Python is runtime. A module is 'defined' by executing the module's source top-to-bottom, just like a script, …
33
votes
Hidden features of Python
Re-raising exceptions:
try:
some_operation()
except SomeError, e:
if is_fatal(e):
raise
handle_nonfatal(e)
The 'raise' stateme …
2
votes
What IDE would you recommend for Python development?
There is a comprehensive list at http://wiki.python.org/moin/IntegratedDevelopmentEnvironments (as well as …
