New submission from Cesare Di Mauro <[email protected]>:

This test fails on Windows because it tries to change the working folder to an 
empty string.
Anyway, even changing:
    os.chdir(basepath)
with:
    os.chdir(basepath or '.')
it fails because the subprocess tries to execute an ELF file 
('Modules/_testembed') which Windows isn't able to handle.

----------
components: Tests, Windows
files: test_capi.py.patch
keywords: patch
messages: 139044
nosy: brian.curtin, cdimauro, pitrou
priority: normal
severity: normal
status: open
title: test_subinterps fails on Windows
type: behavior
versions: Python 3.3
Added file: http://bugs.python.org/file22456/test_capi.py.patch

_______________________________________
Python tracker <[email protected]>
<http://bugs.python.org/issue12407>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to