Tagged Questions

19
votes
5answers
3k views

Python thread pool similar to the multiprocessing Pool?

Is there a Pool class for worker threads, similar to the multiprocessing module's Pool class? I like for example the easy way to parallelize a map function def long_running_func(p): ...
14
votes
5answers
21k views

Function overloading in Python: Missing [closed]

As this says: http://mail.python.org/pipermail/python-list/2003-May/206149.html Function overloading is absent in Python. As far as I feel this a big handicap since its also an OO language. ...
0
votes
2answers
293 views

Missing datetime.time.__sub__?

Why can't subtract two time objects? For example, 12:00 - 11:00 = 1:00 from datetime import time time(12,00) - time(11,00) # -> timedelta(hours=1) It seems that datetime.time.__sub__ is missing ...