mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2026-09-23 04:04:15 +08:00
Merge pull request #337 from xfguo/ignore-pep274
Remove unsupport syntex for python 2.6.
This commit is contained in:
+1
-1
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user