Searched refs:allow_unicode (Results 1 – 7 of 7) sorted by relevance
/third_party/PyYAML/tests/lib/ |
D | test_input_output.py | 55 for allow_unicode in [False, True]: 56 data1 = yaml.dump(value, allow_unicode=allow_unicode) 59 yaml.dump(value, stream, encoding=encoding, allow_unicode=allow_unicode) 61 data3 = yaml.dump(value, encoding=encoding, allow_unicode=allow_unicode) 68 yaml.dump(value, stream, encoding=encoding, allow_unicode=allow_unicode) 76 yaml.dump(value, stream, encoding=encoding, allow_unicode=allow_unicode) 94 yaml.dump(data, stream, allow_unicode=True) 97 yaml.dump(data, stream, encoding='utf-16-le', allow_unicode=True) 100 yaml.dump(data, stream, allow_unicode=True) 104 yaml.dump(data, stream, encoding='utf-8', allow_unicode=True) [all …]
|
D | test_representer.py | 8 for allow_unicode in [False, True]: 15 allow_unicode=allow_unicode, encoding=encoding)
|
/third_party/PyYAML/lib/yaml/ |
D | dumper.py | 14 allow_unicode=None, line_break=None, argument 19 allow_unicode=allow_unicode, line_break=line_break) 32 allow_unicode=None, line_break=None, argument 37 allow_unicode=allow_unicode, line_break=line_break) 50 allow_unicode=None, line_break=None, argument 55 allow_unicode=allow_unicode, line_break=line_break)
|
D | cyaml.py | 56 allow_unicode=None, line_break=None, argument 61 allow_unicode=allow_unicode, line_break=line_break, 73 allow_unicode=None, line_break=None, argument 78 allow_unicode=allow_unicode, line_break=line_break, 90 allow_unicode=None, line_break=None, argument 95 allow_unicode=allow_unicode, line_break=line_break,
|
D | __init__.py | 159 allow_unicode=None, line_break=None): argument 169 allow_unicode=allow_unicode, line_break=line_break) 180 allow_unicode=None, line_break=None, argument 195 allow_unicode=allow_unicode, line_break=line_break, 218 allow_unicode=None, line_break=None, argument 235 allow_unicode=allow_unicode, line_break=line_break,
|
D | emitter.py | 39 allow_unicode=None, line_break=None): argument 84 self.allow_unicode = allow_unicode 704 if not self.allow_unicode: 935 or (self.allow_unicode
|
/third_party/PyYAML/yaml/ |
D | _yaml.pyx | 906 allow_unicode=None, line_break=None, encoding=None, argument 922 if allow_unicode:
|