H A D | history.py | 142 # @param exe The executable. 146 def test_utf8(exe, args, env, idx, bc=True): argument 151 child = pexpect.spawn(exe, args=args, env=env, encoding='utf-8', codec_errors='ignore') 183 # @param exe The executable. 186 def test_utf8_0(exe, args, env, bc=True): argument 191 child = pexpect.spawn(exe, args=args, env=env, encoding='utf-8', codec_errors='ignore') 225 def test_utf8_1(exe, args, env, bc=True): argument 226 return test_utf8(exe, args, env, 0, bc) 229 def test_utf8_2(exe, args, env, bc=True): argument 230 return test_utf8(exe, args, env, 1, bc) [all …]
|