Custom Query (121 matches)
Results (55 - 57 of 121)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #66 | worksforme | ScannerError in fetch_more_tokens | xi | Takanao Endoh <djmchl@…> |
| Description |
>>> import yaml
>>> yaml.load(" 'spam: %' ")
'spam: %'
>>> yaml.load(" spam: % ")
------------------------------------------------------------
Traceback (most recent call last):
...
File "/Volumes/data/pylib/src/yaml/scanner.py", line 257, in fetch_more_tokens
% ch.encode('utf-8'), self.get_mark())
ScannerError: while scanning for the next token
found character '%' that cannot start any token
in "<string>", line 1, column 8:
spam: %
^
|
|||
| #68 | wontfix | PyYAML don't load datetime objects dumped with PySyck | xi | miki@… |
| Description |
>>> from datetime import datetime
>>> now = datetime.now()
>>> import syck
>>> a = {"t": now}
>>> yaml.load(syck.dump(a))
Traceback (most recent call last):
File "<pyshell#9>", line 1, in <module>
lib.yaml.load(syck.dump(a))
File "yaml/__init__.py", line 66, in load
File "yaml/constructor.py", line 38, in get_data
File "yaml/constructor.py", line 46, in construct_document
File "yaml/constructor.py", line 394, in construct_yaml_map
File "yaml/constructor.py", line 207, in construct_mapping
File "yaml/constructor.py", line 132, in construct_mapping
File "yaml/constructor.py", line 87, in construct_object
File "yaml/constructor.py", line 410, in construct_undefined
ConstructorError: could not determine a constructor for the tag '!timestamp'
in "<string>", line 2, column 4:
t: !timestamp 2007-10-19T14:08:44.5 ...
^
|
|||
| #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"). |
|||
Note: See TracQuery
for help on using queries.
