[issue44287] test_asyncio: test_popen() failed on AMD64 Windows8.1 Refleaks 3.9

2021-06-22 Thread STINNER Victor
Change by STINNER Victor : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.10, Python 3.11 ___ Python tracker ___

[issue44287] test_asyncio: test_popen() failed on AMD64 Windows8.1 Refleaks 3.9

2021-06-21 Thread miss-islington
miss-islington added the comment: New changeset 0ff487b8abe70f091285acf367b795861eed8049 by Miss Islington (bot) in branch '3.9': bpo-44287: asyncio test_popen() uses longer timeout (GH-26832) https://github.com/python/cpython/commit/0ff487b8abe70f091285acf367b795861eed8049

[issue44287] test_asyncio: test_popen() failed on AMD64 Windows8.1 Refleaks 3.9

2021-06-21 Thread miss-islington
miss-islington added the comment: New changeset c032a12cbb7d6e2d6a292b0e9220c33ef7349d28 by Miss Islington (bot) in branch '3.10': bpo-44287: asyncio test_popen() uses longer timeout (GH-26832) https://github.com/python/cpython/commit/c032a12cbb7d6e2d6a292b0e9220c33ef7349d28

[issue44287] test_asyncio: test_popen() failed on AMD64 Windows8.1 Refleaks 3.9

2021-06-21 Thread miss-islington
Change by miss-islington : -- pull_requests: +25423 pull_request: https://github.com/python/cpython/pull/26842 ___ Python tracker ___

[issue44287] test_asyncio: test_popen() failed on AMD64 Windows8.1 Refleaks 3.9

2021-06-21 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 3.0 -> 4.0 pull_requests: +25422 pull_request: https://github.com/python/cpython/pull/26841 ___ Python tracker

[issue44287] test_asyncio: test_popen() failed on AMD64 Windows8.1 Refleaks 3.9

2021-06-21 Thread STINNER Victor
STINNER Victor added the comment: New changeset be1cb3214d09d4bf0288bc45f3c1f167f67e4514 by Victor Stinner in branch 'main': bpo-44287: asyncio test_popen() uses longer timeout (GH-26832) https://github.com/python/cpython/commit/be1cb3214d09d4bf0288bc45f3c1f167f67e4514

[issue44287] test_asyncio: test_popen() failed on AMD64 Windows8.1 Refleaks 3.9

2021-06-21 Thread STINNER Victor
Change by STINNER Victor : -- keywords: +patch pull_requests: +25413 stage: -> patch review pull_request: https://github.com/python/cpython/pull/26832 ___ Python tracker ___

[issue44287] test_asyncio: test_popen() failed on AMD64 Windows8.1 Refleaks 3.9

2021-06-02 Thread STINNER Victor
.ware-win81-release.refleak\build\lib\test\test_asyncio\test_windows_utils.py", line 111, in test_popen self.assertEqual(res, _winapi.WAIT_OBJECT_0) AssertionError: 258 != 0 Traceback (most recent call last): File "D:\buildarea\3.9.ware-win81-release.refleak\build\lib\test\suppo

[issue1559298] test_popen fails on Windows if installed to "Program Files"

2019-09-11 Thread Steve Dower
Change by Steve Dower : -- resolution: -> out of date stage: needs patch -> resolved status: open -> closed ___ Python tracker ___

[issue7671] test_popen fails if path contains special char like ";"

2019-03-15 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1559298] test_popen fails on Windows if installed to "Program Files"

2019-03-15 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1559298] test_popen fails on Windows if installed to Program Files

2015-02-18 Thread Mark Lawrence
Mark Lawrence added the comment: Do we leave this open or close it as there is a known work around for 2.7? -- versions: -Python 3.1, Python 3.2 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1559298

[issue1559298] test_popen fails on Windows if installed to Program Files

2015-02-18 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- nosy: +steve.dower ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1559298 ___ ___

[issue1559298] test_popen fails on Windows if installed to Program Files

2015-02-18 Thread Steve Dower
Steve Dower added the comment: The docs are pretty clear about using Popen instead of os.popen, and people using popen have likely worked around it already, so we're more likely to break them by changing it now. I vote to close. -- ___ Python

[issue7671] test_popen fails if path contains special char like ;

2014-06-29 Thread Mark Lawrence
Mark Lawrence added the comment: Can this be closed as out of date? -- nosy: +BreamoreBoy ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7671 ___

[issue1559298] test_popen fails on Windows if installed to Program Files

2014-06-08 Thread eryksun
eryksun added the comment: This is fixed for subprocess.Popen in 2.7, 3.1, and 3.2; see issue 2304. In 2.7, nt.popen still has this problem. As mentioned above, it can be worked around by using subprocess.Popen as described here:

[issue1559298] test_popen fails on Windows if installed to Program Files

2014-06-07 Thread Mark Lawrence
Mark Lawrence added the comment: Is this worth pursuing given the wording here https://docs.python.org/3/library/subprocess.html#replacing-os-popen-os-popen2-os-popen3 ? -- nosy: +BreamoreBoy ___ Python tracker rep...@bugs.python.org

[issue1559298] test_popen fails on Windows if installed to Program Files

2014-06-07 Thread Brian Curtin
Changes by Brian Curtin br...@python.org: -- nosy: -brian.curtin ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1559298 ___ ___ Python-bugs-list

[issue19598] Timeout in test_popen() of test_asyncio.test_windows_utils.PopenTests

2013-11-15 Thread STINNER Victor
STINNER Victor added the comment: Likely. Can you suggest a fix? Replace the timeout of 2 seconds with a timeout of 10 seconds. It looks like the test checks the overlapped I/O API, not the timing. If you want to test exactly the timing, another test is needed (ex: measure the elapsed time

[issue19598] Timeout in test_popen() of test_asyncio.test_windows_utils.PopenTests

2013-11-15 Thread Roundup Robot
Roundup Robot added the comment: New changeset d48ec67b3b0e by Guido van Rossum in branch 'default': asyncio: Longer timeout in Windows test_popen. Fixes issue 19598. http://hg.python.org/cpython/rev/d48ec67b3b0e -- nosy: +python-dev ___ Python

[issue19598] Timeout in test_popen() of test_asyncio.test_windows_utils.PopenTests

2013-11-15 Thread STINNER Victor
Changes by STINNER Victor victor.stin...@gmail.com: -- resolution: - fixed status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19598 ___

[issue19598] Timeout in test_popen() of test_asyncio.test_windows_utils.PopenTests

2013-11-14 Thread STINNER Victor
New submission from STINNER Victor: http://buildbot.python.org/all/builders/x86%20Windows7%203.x/builds/7528/steps/test/logs/stdio ... test_popen (test.test_asyncio.test_windows_utils.PopenTests) ... FAIL test_winsocketpair (test.test_asyncio.test_windows_utils.WinsocketpairTests) ... ok

[issue19598] Timeout in test_popen() of test_asyncio.test_windows_utils.PopenTests

2013-11-14 Thread Guido van Rossum
Guido van Rossum added the comment: Likely. Can you suggest a fix? -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19598 ___ ___ Python-bugs-list

[issue7671] test_popen fails if path contains special char like ;

2012-07-30 Thread Atsuo Ishimoto
Changes by Atsuo Ishimoto ishim...@gembook.org: -- nosy: +ishimoto ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7671 ___ ___ Python-bugs-list

Re: test_popen

2011-06-09 Thread Dave Angel
On 01/-10/-28163 02:59 PM, harrismh777 wrote: Looks like my 2.7 test_popen failure is an open issue7671... since Jan 2010. Looks like it really does function ok. At any rate, I was able to test Popen myself today, and it ran fine. I needed to write a script that will disable the touch pad

test_popen

2011-06-08 Thread harrismh777
hi folks, I've installed 3.2 and 2.7.1 on a second development notebook from sources. 3.2 was smooth, and 2.7.1 make test failed test_popen. All other tests either passed or were skipped for valid reasons. I do not remember 3.2 failing popen... so I'm wondering about 2.7? I'm assuming

test_popen

2011-06-08 Thread harrismh777
Looks like my 2.7 test_popen failure is an open issue7671... since Jan 2010. Looks like it really does function ok. At any rate, I was able to test Popen myself today, and it ran fine. I needed to write a script that will disable the touch pad on this HP g series, because there is no way

[issue1559298] test_popen fails on Windows if installed to Program Files

2010-08-25 Thread Tim Golden
Changes by Tim Golden m...@timgolden.me.uk: -- assignee: - tim.golden nosy: +tim.golden ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1559298 ___

[issue1559298] test_popen fails on Windows if installed to Program Files

2010-08-24 Thread Mark Lawrence
Changes by Mark Lawrence breamore...@yahoo.co.uk: -- versions: -Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1559298 ___ ___

[issue1475] test_popen fails when the directory contains a space

2010-08-12 Thread Tim Golden
Tim Golden m...@timgolden.me.uk added the comment: Fixed by issue2304 -- components: -Library (Lib), Tests, Windows nosy: +tim.golden resolution: - duplicate stage: - committed/rejected status: open - closed type: - behavior ___ Python tracker

[issue7671] test_popen fails if path contains special char like ;

2010-01-31 Thread Benjamin Peterson
Benjamin Peterson benja...@python.org added the comment: These patches cause the Windows buildbot to fail. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7671 ___

[issue7671] test_popen fails if path contains special char like ;

2010-01-31 Thread Brian Curtin
Changes by Brian Curtin cur...@acm.org: -- nosy: +brian.curtin ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7671 ___ ___ Python-bugs-list mailing

[issue7671] test_popen fails if path contains special char like ;

2010-01-31 Thread Benjamin Peterson
Benjamin Peterson benja...@python.org added the comment: These patches cause the Windows buildbot to fail. -- priority: - normal ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7671 ___

[issue1559298] test_popen fails on Windows if installed to Program Files

2010-01-29 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- stage: patch review - needs patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1559298 ___ ___

[issue1559298] test_popen fails on Windows if installed to Program Files

2010-01-29 Thread Brian Curtin
Brian Curtin cur...@acm.org added the comment: Florent is correct. The patch seems to fix regular popen, but popen3 sees problems. I'll see if I can fit this in and have a look. Also of note is that the other flavors of popen are not tested...at least not in Lib/test/test_popen.py or

[issue1559298] test_popen fails on Windows if installed to Program Files

2010-01-26 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- nosy: +ezio.melotti ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1559298 ___ ___

[issue1559298] test_popen fails on Windows if installed to Program Files

2010-01-15 Thread Florent Xicluna
import sys; print sys.argv 42')[2].read() '\'C:\\Python27\\python.exe -c import\' est pas reconnu en tant que commande interne ou externe, un programme executable ou un fichier de commandes.\n' It may be related to the test_popen failure. Actually, it seems that the outer double quotes are removed

[issue1559298] test_popen fails on Windows if installed to Program Files

2010-01-15 Thread Florent Xicluna
Changes by Florent Xicluna la...@yahoo.fr: -- keywords: +buildbot ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1559298 ___ ___ Python-bugs-list

[issue1559298] test_popen fails on Windows if installed to Program Files

2010-01-14 Thread Brian Curtin
Brian Curtin cur...@acm.org added the comment: This has come up recently and Martin's approach seems to work. I updated his patch for trunk, and test_popen passes when I run it with and without a space in the path. Russ Gibson's suggestion was already applied to test_popen, so the only code

[issue1559298] test_popen fails on Windows if installed to Program Files

2010-01-14 Thread Brian Curtin
Brian Curtin cur...@acm.org added the comment: Here is a py3k version of the previous patch. os.popen is implemented using subprocess.Popen, so the quoting change was made there. -- Added file: http://bugs.python.org/file15886/issue1559298_py3k.diff

[issue7671] test_popen fails if path contains special char like ;

2010-01-13 Thread Florent Xicluna
Florent Xicluna la...@yahoo.fr added the comment: It triggers some Windows buildbot failures. http://www.python.org/dev/buildbot/all/builders/x86%20XP-4%20trunk/builds/2837 -- ___ Python tracker rep...@bugs.python.org

[issue7671] test_popen fails if path contains special char like ;

2010-01-11 Thread Florent Xicluna
Florent Xicluna la...@yahoo.fr added the comment: With r77420, it fails when path contains backslash \. Using '%s -c ...' it does not fail. -- resolution: fixed - status: closed - open ___ Python tracker rep...@bugs.python.org

[issue7671] test_popen fails if path contains semi-colon ;

2010-01-10 Thread Florent Xicluna
New submission from Florent Xicluna la...@yahoo.fr: /tmp/semi;colon $ ./python -3 Lib/test/regrtest.py test_popen test_popen sh: /tmp/semi: Aucun fichier ou répertoire de ce type sh: colon/python: Aucun fichier ou répertoire de ce type test test_popen failed -- Traceback (most recent call last

[issue7671] test_popen fails if path contains special char like ;

2010-01-10 Thread Florent Xicluna
Florent Xicluna la...@yahoo.fr added the comment: Patch attached. -- keywords: +patch stage: - patch review title: test_popen fails if path contains semi-colon ; - test_popen fails if path contains special char like ; Added file: http://bugs.python.org/file15821

[issue7671] test_popen fails if path contains special char like ;

2010-01-10 Thread Benjamin Peterson
Benjamin Peterson benja...@python.org added the comment: Fixed in r77420. -- nosy: +benjamin.peterson resolution: - fixed status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7671

[issue1559298] test_popen fails on Windows if installed to Program Files

2009-07-03 Thread Russ Gibson
Russ Gibson ru...@rnstech.com added the comment: What is needed is separate quoting for the command and the argument. Right now, test_popen only surrounds the entire command line with quotes: c:\Program Files\Python2.6\Python.exe -u c:\Documents and Settings\Russ Gibson\cgi-bin\cgi.py

[issue1475] test_popen fails when the directory contains a space

2009-07-03 Thread Russ Gibson
Russ Gibson ru...@rnstech.com added the comment: (Same comment I added to 1559298:) What is needed is separate quoting for the command and the argument. Right now, test_popen only surrounds the entire command line with quotes: c:\Program Files\Python2.6\Python.exe -u c:\Documents and Settings

[issue1559298] test_popen fails on Windows if installed to Program Files

2009-05-25 Thread Philip Jenvey
Philip Jenvey pjen...@users.sourceforge.net added the comment: subprocess also needs this fix applied Does the w9xopen command line below not need this? -- nosy: +pjenvey ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1559298

[issue1559298] test_popen fails on Windows if installed to Program Files

2009-03-29 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- components: +Tests stage: - patch review type: - behavior versions: +Python 2.6, Python 3.0 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1559298

[issue1475] test_popen fails when the directory contains a space

2008-03-10 Thread Joseph Armbruster
Joseph Armbruster [EMAIL PROTECTED] added the comment: Should this issue be linked to 1559298? It appears to be the same issue but was opened up earlier and is referencing a different version. __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1475

[issue1475] test_popen fails when the directory contains a space

2007-11-21 Thread Christian Heimes
Christian Heimes added the comment: In Python 3.x os.popen is implemented based on subprocess. I believe it's still a problem with subprocess. Python 3.x also drops support for Windows 95 to ME. Would the additional quoting be ok when the code checks for COMPSPEC == cmd.exe first? # Supply

[issue1475] test_popen fails when the directory contains a space

2007-11-21 Thread Gabriel Genellina
Changes by Gabriel Genellina: -- nosy: +gagenellina __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1475 __ ___ Python-bugs-list mailing list Unsubscribe:

[issue1475] test_popen fails when the directory contains a space

2007-11-20 Thread Joseph Armbruster
Joseph Armbruster added the comment: I believe the issue lies with the cmd command line parameters and insufficient quoting: Currently, if this string is passed into CreateProcess as args, the call will fail: C:\WINDOWS\System32\cmd.exe /c C:\Documents and

[issue1475] test_popen fails when the directory contains a space

2007-11-20 Thread Christian Heimes
Christian Heimes added the comment: I like to have Peter Astrand look over the patch first. He has written most of the subprocess module. __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1475 __

[issue1475] test_popen fails when the directory contains a space

2007-11-20 Thread Peter Åstrand
Peter Åstrand added the comment: I think there's some confusion in this bug. The report on http://pastebin.com/fa947767 indicates a problem in test_popen. This is a test for os.popen() and it does not have anything to do with the subprocess module. I believe it is test_popen.py that should

[issue1475] test_popen fails when the directory contains a space

2007-11-19 Thread Christian Heimes
, joearmbruster, tiran severity: normal status: open title: test_popen fails when the directory contains a space versions: Python 3.0 __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1475

[issue1475] test_popen fails when the directory contains a space

2007-11-19 Thread Christian Heimes
Changes by Christian Heimes: -- priority: - normal __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1475 __ ___ Python-bugs-list mailing list Unsubscribe:

[issue1559298] test_popen fails on Windows if installed to Program Files

2007-11-18 Thread Joseph Armbruster
Joseph Armbruster added the comment: I applied the change to: Python 2.6a0 (trunk:58651M, Nov 18 2007, 08:46:54) [MSC v.1400 32 bit (Intel)] on win32 and test_popen passes appeared to pass. -- nosy: +JosephArmbruster _ Tracker [EMAIL PROTECTED