Lines Matching full:utf8
52 out = self.get_output('-X', 'utf8', '-c', code)
55 # undocumented but accepted syntax: -X utf8=1
56 out = self.get_output('-X', 'utf8=1', '-c', code)
59 out = self.get_output('-X', 'utf8=0', '-c', code)
64 # and has the priority over -X utf8
65 out = self.get_output('-X', 'utf8', '-c', code,
78 # -X utf8 has the priority over PYTHONUTF8
79 out = self.get_output('-X', 'utf8=0', '-c', code, PYTHONUTF8='1')
85 out = self.get_output('-X', 'utf8', '-c', code, PYTHONUTF8='1',
113 out = self.get_output('-X', 'utf8', '-c', code)
118 # and has the priority over -X utf8 and PYTHONUTF8
119 out = self.get_output('-X', 'utf8', '-c', code,
132 out = self.get_output('-X', 'utf8', '-c', code,
140 out = self.get_output('-X', 'utf8', '-c', code,
147 out = self.get_output('-X', 'utf8', '-c', code,
205 out = self.get_output('-X', 'utf8', '-c', code)
210 out = self.get_output('-X', 'utf8', '-c', code, LC_ALL=loc)
225 check('utf8', [arg_utf8])
228 check('utf8', [arg_utf8], LC_ALL=loc)
238 check('utf8=0', [c_arg], LC_ALL=loc)
242 # twice when -X utf8 requires to parse the configuration twice (when
246 out = self.get_output('-X', 'utf8', '-O', '-c', code)
248 out = self.get_output('-X', 'utf8', '-OO', '-c', code)
252 out = self.get_output('-X', 'utf8', '-E', '-c', code)
271 cmd = [sys.executable, '-X', 'utf8', '-c', code]
277 with open(filename, encoding="utf8") as fp: