4
votes
3answers
283 views
Perl equivalent of (Python-) list comprehension
I'm looking for ways to express this Python snippet in Perl:
data = {"A": None, "B": "yes", "C": None}
key_list = [k for k in data if data[k]]
# in this case the same as filter(la …
2
votes
Single quotes vs. double quotes in Python
Quoting the official docs at http://docs.python.org/ref/strings.html:
In plain English: String literals c …
0
votes
Tracd Realm
The text referred to says that you must specify the realm name as "trac", not "Trac", but I have no chance of testing whether that makes any difference, sorry.
…
5
votes
Version number comparison
Is reuse considered elegance in this instance? :)
# pkg_resources is in setup_tools
def mycmp(a, b):
from pkg_resources import parse_version as V
return cmp(V(a),V( …
