> 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\PCbuild8>rt test_popen
> Deletin
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),
>
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
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"
> ...
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"
> >
Choosing a revision, such as
http://svn.python.org/view/python/trunk/Objects/?rev=55606&sortby=date&view=log
does not lead to the correct generated page; it either times out or
generates a much older changelog.
___
Python-Dev mailing list
Python-Dev@pyt