Search Results

1
vote

Extension methods in Python

I've had great luck with the method described here: http://mail.python.org/pipermail/python-dev …
3
votes

Python: Pass or Sleep for long running processes?

I've always seen/heard that using sleep is the better way to do it. Using sleep will keep your Python interpreter's CPU usage from going wild. …