From a563aecda09d01b4ecd278315360148de6a36be9 Mon Sep 17 00:00:00 2001 From: holger krekel Date: Tue, 22 Oct 2013 10:59:09 +0200 Subject: fix issue129: tox now uses Popen(..., universal_newlines=True) to force creation of unicode stdout/stderr streams. fixes a problem on specific platform configs when creating virtualenvs with Python3.3. Thanks Jorgen Sch?fer or investigation and solution sketch. --- tox/_pytestplugin.py | 1 + 1 file changed, 1 insertion(+) (limited to 'tox/_pytestplugin.py') diff --git a/tox/_pytestplugin.py b/tox/_pytestplugin.py index 6c90c8d..4958617 100644 --- a/tox/_pytestplugin.py +++ b/tox/_pytestplugin.py @@ -130,6 +130,7 @@ def pytest_funcarg__mocksession(request): def make_emptydir(self, path): pass def popen(self, args, cwd, shell=None, + universal_newlines=False, stdout=None, stderr=None, env=None): pm = pcallMock(args, cwd, env, stdout, stderr, shell) self._pcalls.append(pm) -- cgit v1.2.1