D | history.py | 70 def spawn(exe, args, env, encoding=None, codec_errors='strict'): argument 73 return pexpect.popen_spawn.PopenSpawn([ exe ] + args, env=env, 76 return pexpect.spawn(exe, args, env=env, encoding=encoding, 115 # @param exe The executable. 119 def test_utf8(exe, args, env, idx, bc=True): argument 124 child = pexpect.spawn(exe, args=args, env=env, encoding='utf-8', codec_errors='ignore') 156 # @param exe The executable. 159 def test_utf8_0(exe, args, env, bc=True): argument 164 child = pexpect.spawn(exe, args=args, env=env, encoding='utf-8', codec_errors='ignore') 198 def test_utf8_1(exe, args, env, bc=True): argument [all …]
|