Searched refs:full_load (Results 1 – 5 of 5) sorted by relevance
9 output = yaml.full_load(data)11 output = yaml.full_load(io.StringIO(data))19 output = yaml.full_load(input)21 output = yaml.full_load(io.BytesIO(input))35 yaml.full_load(input)42 yaml.full_load(io.BytesIO(input))
40 config = yaml.full_load(file(options.config, 'rb').read())
59 >>> yaml.full_load("""
46 * https://github.com/yaml/pyyaml/pull/359 -- Use full_load in yaml-highlight example
97 def full_load(stream): function