[issue12008] HtmlParser non-strict goes wrong with unquoted attributes

2011-09-03 Thread Piet van Oostrum
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

[issue18966] Threads within multiprocessing Process terminate early

2013-09-07 Thread Piet van Oostrum
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

[issue19490] Problem installing matplotlib 1.3.1 with Python 2.7.6rc1 and 3.3.3rc1

2013-11-05 Thread Piet van Oostrum
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

[issue5757] Documentation error for Condition.notify()

2009-04-14 Thread Piet van Oostrum
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