This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vstinner
Recipients Arfrever, gregory.p.smith, vstinner
Date 2010-05-09.03:02:36
SpamBayes Score 0.003053088
Marked as misclassified No
Message-id <1273374158.39.0.122231012032.issue8513@psf.upfronthosting.co.za>
In-reply-to
Content
> Build on the os._execvpe unittest I added in py3k r81001.

The test fails on Windows.

======================================================================
FAIL: test_internal_execvpe (test.test_os.ExecTests)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "D:\cygwin\home\db3l\buildarea\3.x.bolen-windows\build\lib\test\test_os.py", line 683, in test_internal_execvpe
    exec_stubbed.calls)
AssertionError: Lists differ: [('execve', '/p/f', (['-a'], {... != [('execve', '/p\\f', (['-a'], ...

First differing element 0:
('execve', '/p/f', (['-a'], {'spam': 'beans'}))
('execve', '/p\\f', (['-a'], {'spam': 'beans'}))

- [('execve', '/p/f', (['-a'], {'spam': 'beans'})),
?                ^

+ [('execve', '/p\\f', (['-a'], {'spam': 'beans'})),
?                ^^

-  ('execve', '/pp/f', (['-a'], {'spam': 'beans'}))]
?                 ^

+  ('execve', '/pp\\f', (['-a'], {'spam': 'beans'}))]
?                 ^^
History
Date User Action Args
2010-05-09 03:02:38vstinnersetrecipients: + vstinner, gregory.p.smith, Arfrever
2010-05-09 03:02:38vstinnersetmessageid: <1273374158.39.0.122231012032.issue8513@psf.upfronthosting.co.za>
2010-05-09 03:02:36vstinnerlinkissue8513 messages
2010-05-09 03:02:36vstinnercreate