提交 84e4fde7 编写于 作者: B Bernard Xiong

Merge pull request #337 from xfguo/ignore-pep274

Remove unsupport syntex for python 2.6.
......@@ -29,7 +29,7 @@ class Win32Spawn:
cmdline = cmd + " " + newargs
# Make sure the env is constructed by strings
_e = {k: str(v) for k, v in env.items()}
_e = dict([(k, str(v)) for k, v in env.items()])
# Windows(tm) CreateProcess does not use the env passed to it to find
# the executables. So we have to modify our own PATH to make Popen
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册