[issue12407] test_subinterps fails on Windows

Cesare Di Mauro report at bugs.python.org
Sat Jun 25 13:02:08 CEST 2011


New submission from Cesare Di Mauro <cesare.di.mauro at gmail.com>:

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 <report at bugs.python.org>
<http://bugs.python.org/issue12407>
_______________________________________


More information about the Python-bugs-list mailing list