Re: [Python-Dev] popen test case inquiry in r55735 using PCBuild8

2007-06-04 Thread Mark Hammond
All, I wanted to pass this one around before opening an issue on it. When running the unit test for popen via rt.bat (in PCBuild8), I received the following error: === BEGIN ERROR === C:\Documents and Settings\joe\Desktop\Development\Python\trunk\PCbuild8rt test_popen Deleting .pyc/.pyo

Re: [Python-Dev] popen test case inquiry in r55735 using PCBuild8

2007-06-04 Thread Joseph Armbruster
Mark, Sounds good, I will get patching tonight. Any thoughts on CreateProcessW ? Joseph Armbruster On 6/4/07, Mark Hammond [EMAIL PROTECTED] wrote: All, I wanted to pass this one around before opening an issue on it. When running the unit test for popen via rt.bat (in PCBuild8), I

[Python-Dev] What exception should Thread.start() raise?

2007-06-04 Thread BJörn Lindqvist
The threading module contains buggy code: class Thread(_Verbose): ... def start(self): assert self.__initialized, Thread.__init__() not called assert not self.__started, thread already started ... If you run such code with python -O, weird stuff may happen when you

Re: [Python-Dev] What exception should Thread.start() raise?

2007-06-04 Thread Steven Bethard
On 6/4/07, BJörn Lindqvist [EMAIL PROTECTED] wrote: The threading module contains buggy code: class Thread(_Verbose): ... def start(self): assert self.__initialized, Thread.__init__() not called assert not self.__started, thread already started ... If you run

Re: [Python-Dev] What exception should Thread.start() raise?

2007-06-04 Thread Guido van Rossum
On 6/4/07, Steven Bethard [EMAIL PROTECTED] wrote: On 6/4/07, BJörn Lindqvist [EMAIL PROTECTED] wrote: The threading module contains buggy code: class Thread(_Verbose): ... def start(self): assert self.__initialized, Thread.__init__() not called assert not

[Python-Dev] svn viewer confused

2007-06-04 Thread Jim Jewett
Choosing a revision, such as http://svn.python.org/view/python/trunk/Objects/?rev=55606sortby=dateview=log does not lead to the correct generated page; it either times out or generates a much older changelog. ___ Python-Dev mailing list