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 …
36
votes
What is a metaclass in Python?
A metaclass is the class of a class. Like a class defines how an instance of the class behaves, a metaclass defines how a class behaves. A class is an instance of a metaclass.
While in Pyth …
1
vote
Building Python C extension modules for Windows
Setuptools and distutils don't come with gcc, but they use the same compiler Python was built with. The difference is mostly that on the typical UNIX system that compiler is 'gcc' and you have it i …
179
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, …
32
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
Sorting a dict on __iter__
By far the easiest approach, and almost certainly the fastest, is something along the lines of:
def sorted_dict(d):
keys = d.keys()
keys.sort()
for key in keys:
…
15
votes
What can you use Python generator functions for?
Generators give you lazy evaluation. You use them by iterating over them, either explicitly with 'for' or implicitly by passing it to any function or construct that iterates. You can think of gener …
10
votes
How do I merge a 2D array in Python into one string with List Comprehension?
Like so:
[ item for innerlist in outerlist for item in innerlist ]
Turning that directly into a string with separators:
','.join(str(item) for inne …
10
votes
What is “thread local storage” in Python, and why do I need it?
In Python, everything is shared, except for function-local variables (because each function call gets its own set of locals, and threads are always separate function calls.) And even then, only the …
9
votes
Python - Get Instance Variables
You normally can't get instance attributes given just a class, at least not without instantiating the class. You can get instance attributes given an instance, though, or class attributes given a c …
0
votes
Which is more pythonic, factory as a function in a module, or as a method on the class it creates ?
A staticmethod rarely has value, but a classmethod may be useful. It depends on what you want the class and the factory function to actually do.
A factory function in a module would always …
3
votes
Using Pylint with Django
Because of how pylint works (it examines the source itself, without letting Python actually execute it) it's very hard for pylint to figure out how metaclasses and complex baseclasses actually affe …
1
vote
What is the scope for imported classes in python?
Functions are always executed in the scope they are defined in, as are methods and class bodies. They are never executed in another scope. Because importing is just another assignment statement, an …
