2
votes
Python Regular Expressions
Well, I think you might have missed the r or miscounted the backslashes...
"\\n" == r"\n"
>>> import re
>>> mystring = r"This is \\n a test \\r"
>>> p = …
18
votes
Can you explain closures (as they relate to Python)?
It's simple: A function that references variables from a containing scope, potentially after flow-of-control has left that scope. That last bit is very useful:
>>> def make …
1
vote
Why does this python date/time conversion seem wrong?
mktime(...)
mktime(tuple) -> floating point number
Convert a time tuple in local time to seconds since the Epoch.
local time... fancy that.
The time tu …
3
votes
A Transpose/Unzip Function in Python
You could also do
result = ([ a for a,b in original ], [ b for a,b in original ])
It should scale better. Especially if Python makes good on not expanding …
1
vote
cx_Oracle - what is the best way to iterate over a result set?
There's also the way psyco-pg seems to do it... From what I gather, it seems to create dictionary-like row-proxies to map key lookup into the memory block returned by the query. In tha …
2
votes
How can I render a tree structure (recursive) using a django template?
I think the canonical answer is: "Don't".
What you should probably do instead is unravel the thing in your view code, so it's just a matter of iterating over (in|de)dents in the te …
0
votes
How do you get output parameters from a stored procedure in Python?
You might also look at using SELECT rather than EXECUTE. EXECUTE is (iirc) basically a SELECT that doesn't actually fetch anything (, just makes side-effects happen).
…
3
votes
Using django-rest-interface
Well, from the look of things, there's an authentication parameter to Collection. (see this example: …
0
votes
Python: split a list based on a condition?
If you insist on clever, you could take Winden's solution and just a bit spurious cleverness:
def splay(l, f, d=None):
d = d or {}
for x in l: d.setdefault(f(x), []).append(x)
…
6
votes
How to write an application for the system tray in Linux
python-eggtrayicon
here's the example that comes with the debian package python-eggtrayicon in debian/testing...
#!/usr/bin/python
import pygtk
pygtk.require( …
