Todd Whiteman added the comment:
The attached patch handles errno.ECHILD in the _internal_poll() method and I've
updated the existing "sigchild_ignore.py" test file to perform polling as well.
An unpatched version of Pyhton would normally hang on this particular test,
whi
Changes by Todd Whiteman :
--
nosy: +gregory.p.smith
___
Python tracker
<http://bugs.python.org/issue15756>
___
___
Python-bugs-list mailing list
Unsubscribe:
New submission from Todd Whiteman:
In the case of a "errno.ECHILD" exception - Python's subprocess module misses
the fact that the process has already ended.
The following code will wait indefinitely, even though the launched process is
quickly ended:
import subprocess, signa
Todd Whiteman added the comment:
I still see this problem (in Python 2.7.1 and Python 3.1.2).
When testing using idle, you'll need to launch using "pythonw.exe", i.e.:
pythonw.exe lib\idlelib\idle.py
--
___
Python tracker
<http
Changes by Todd Whiteman :
--
nosy: +twhitema
___
Python tracker
<http://bugs.python.org/issue9609>
___
___
Python-bugs-list mailing list
Unsubscribe:
New submission from Todd Whiteman :
The doc command for os.mkdir is incorrect (at least for posix). It specifies
that there is an optional mode keyword, but it's not a keyword argument, see
below:
>>> import os
>>> help(os.mkdir)
mkdir(...)
mkdir(path [, mode=0
Changes by Todd Whiteman :
--
nosy: +twhitema
___
Python tracker
<http://bugs.python.org/issue7753>
___
___
Python-bugs-list mailing list
Unsubscribe:
Todd Whiteman added the comment:
Is this a duplicate of this already fixed issue: issue5179 ?
--
nosy: +twhitema
___
Python tracker
<http://bugs.python.org/issue3
Changes by Todd Whiteman :
--
nosy: +twhitema
___
Python tracker
<http://bugs.python.org/issue2057>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Todd Whiteman <[EMAIL PROTECTED]>:
--
nosy: +twhitema
___
Python tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue2054>
___
__
Changes by Todd Whiteman <[EMAIL PROTECTED]>:
--
nosy: +twhitema
___
Python tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue4171>
___
__
Todd Whiteman <[EMAIL PROTECTED]> added the comment:
Uh, the Idle bug reported by Jean-Michel is a completely different bug
(please see the first three messages of this report).
Please re-open this bug, as the subprocess issue I have reported is
still outst
Todd Whiteman <[EMAIL PROTECTED]> added the comment:
This seems to be somewhat related to issue1124861:
http://bugs.python.org/issue1124861
___
Python tracker <[EMAIL PROTECTED]>
<http://bugs.pytho
New submission from Todd Whiteman <[EMAIL PROTECTED]>:
I'm getting a 'The handle is invalid' error when using subprocess.Popen
in Python 2.5 (and 2.6). If any of the stdio handles are somehow invalid
or not real io handles (fd is not 0, 1 or 2), and you are not telling
subp
14 matches
Mail list logo