1
vote
Decorating a parent class method
I'm also not entirely sure what the exact behaviour you want is, but assuming its that you want bar.meth1(42) to be equivalent to foo.meth1 being a classmethod of bar (with "self" being the class), …
15
votes
How do I check if a file exists using python
Just to add to the answers - you're almost always better off using the try: open() approach. os.path.exists() only tells you that the file existed at that point. In the tiny interval between that …
1
vote
Get list of XML attribute values in Python
My preferred python xml library is lxml , which wraps libxml2.
Xpath does seem the way to go here, so I'd write this as something like: …
8
votes
In python how to I verify that a string only contains letters, numbers, underscores and dashes?
[Edit] There's another solution not mentioned yet, and it seems to outperform the others given so far in most cases.
Use string.translate to replace all valid characters in the string, and …
1
vote
Python module functions used in unexpected ways
One function I've come to appreciate is string.translate. Its very fast at what it does, and useful anywhere you want to alter or remove characters in a string. I've just used it in a seemingly in …
26
votes
How to generate all permutations of a list in Python
And in python 2.6:
import itertools
itertools.permutations([1,2,3])
(returned as a genera …
12
votes
Are locks unnecessary in multi-threaded Python code because of the GIL?
No - the GIL just protects python internals from multiple threads altering their state. This is a very low-level of locking, sufficient only to keep python's own structures in a consistent state. …
1
vote
Python output buffering
Yes, it is.
You can disable it on the commandline with the "-u" switch.
Alternatively, you could call .flush() on sys.stdout on every write (or wrap it with an object that does this …
2
votes
Find matching sequences in two binary files
Note that even if you did find it this way, there's no guarantee that the longest match is actually the one being looked for. Instead, you may find common initialisation code or string tables adde …
1
vote
Dynamically create variables inside function
Why would you want to do such a thing? Unless you actually do anything with the variables inside the function, a function that just assigns several variables and then discards them is indistinguis …
3
votes
Dynamically create variables inside function
From your comment, perhaps what you're really looking for is something like a bunch object:
class Bunch(object):
def __init__(self, **kwargs):
self.__dict__.update(kwarg …
0
votes
How do I write this in Ruby/Python? Or, can you translate my LINQ to Ruby/Python?
Here's another python version, more closely matching the structure of your C# code. There isn't a builtin for giving distinct results, so I've added a function to do this.
import i …
0
votes
Do I have to cause an ValueError in Python
For the specific case where your list is a sequence of single-character strings you can get what you want by changing the list to be searched to a string in advance (eg. ''.join(chars)).
Yo …
25
votes
Getting stack trace from a running Python application
I have module I use for situations like this - where a process will be running for a long time but gets stuck sometimes for unknown and irreproducable reasons. Its a bit hacky, and only works on u …
12
votes
Should you always favor xrange() over range()?
For performance, especially when you're iterating over a large range, xrange() is usually better. However, there are still a few cases why you might prefer range():
In python 3, r …
