Piet van Oostrum added the comment:
I was bitten by this bug today. Hope it will be solved in the next release of
Python 3.
It is also possible to use the third argument of search in line 285:
m = attrfind_tolerant.search(rawdata, k, endpos)
This seems to me to be a more
New submission from Piet van Oostrum:
When a process started as a multiprocessing Process spawns a thread, it doesn't
wait until the thread terminates. It terminates the thread early when the main
thread of the process terminates, as if the thread would be daemonic (it isn't).
It m
Piet van Oostrum added the comment:
I think future versions of Python should add the relevant information about how
they are linked to Tcl/Tk in sysconfig. This would include the path of the
include files, the shared libraries and the tcl files. Or a framework location
on OS X if this is used
New submission from Piet van Oostrum :
The documentation for Condition.notify() in module threading (Library
Reference) contains an error:
The second sentence (Wait until notified or until a timeout occurs.)
shouldn't be there. Apparently it was copied and pasted from