Custom Query (121 matches)
Results (61 - 63 of 121)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #63 | invalid | % character cannot start a scalar value token | xi | sproaticus |
| Description |
A scalar value cannot start with a % (percent sign) character, though the YAML specification only reserves that character at the beginning of a non-indented line for directives and tags (see http://yaml.org/spec/current.html#id2523453 and http://yaml.org/spec/current.html#id2524297 ). This character should be legal as the first character of a scalar value, e.g. for Python %s-style string substitution and templates. >>> yaml.load('yaml: %')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/lib/python2.5/site-packages/PIL/__init__.py", line 66, in load
File "build/bdist.linux-i686/egg/yaml/constructor.py", line 38, in get_data
File "build/bdist.linux-i686/egg/yaml/composer.py", line 27, in get_node
File "build/bdist.linux-i686/egg/yaml/composer.py", line 34, in compose_document
File "build/bdist.linux-i686/egg/yaml/composer.py", line 63, in compose_node
File "build/bdist.linux-i686/egg/yaml/composer.py", line 112, in compose_mapping_node
File "build/bdist.linux-i686/egg/yaml/composer.py", line 43, in compose_node
File "build/bdist.linux-i686/egg/yaml/parser.py", line 95, in check_event
File "build/bdist.linux-i686/egg/yaml/parser.py", line 446, in parse_block_mapping_value
File "build/bdist.linux-i686/egg/yaml/scanner.py", line 116, in check_token
File "build/bdist.linux-i686/egg/yaml/scanner.py", line 257, in fetch_more_tokens
yaml.scanner.ScannerError: while scanning for the next token
found character '%' that cannot start any token
in "<string>", line 1, column 7:
yaml: %
^
Environment:
|
|||
| #69 | invalid | scalar value of escaped double-newline parsed as a single newline | xi | anonymous |
| Description |
When parsing the following: terminator : "\n\n" The value of the right side scalar is returned as \n, rather than \n\n. Likewise, four newlines ("\n\n\n\n") is parsed as three ("\n\n\n"). |
|||
| #73 | invalid | numpy arrays ... | xi | lal.george@… |
| Description |
What is the best way to transfer very large numpy arrays using PyYAML? Ideally I would like to do something like:
However, the yaml.load returns an exception:
Since I have quoted the string, yaml should not be diving into it - correct? Thanks. Best,
|
|||
