summaryrefslogtreecommitdiff
path: root/scanner.py
Commit message (Collapse)AuthorAgeFilesLines
* fixes issue #201: decoding UnicodeAnthon van der Neut2018-06-171-1/+1
| | | | | *When this change indeed resolves your problem, please **Close** this issue*. *(You can do so usingthe WorkFlow pull-down (close to the top right of this page)*
* fix for '{"in":{},"out":{}}' no longer parsing, reported by mjalkio on so0.15.30Anthon van der Neut2017-08-141-1/+1
|
* fix lists within lists with commentsAnthon van der Neut2017-08-131-10/+27
| | | | had to keep emit the comment and mark it for having been emitted, then reset on next run (as with maps)
* fix for indenting non-indented sequence after commentAnthon van der Neut2017-08-091-1/+1
| | | | | | - solves several expected to fail and fixes two incorrect tests (test_09-Sammy Sosa & test_before_nested_seq_from_scratch) - still swaps foo and bar on test_issue_25_03
* remove debug statementsAnthon van der Neut2017-08-091-1/+1
|
* python 2.7 changes float round-trippignAnthon van der Neut2017-08-071-0/+1
|
* added register_class/yaml_object0.15.19Anthon van der Neut2017-07-131-21/+30
|
* update to flake8==3.3.0 with --ignore F405Anthon van der Neut2017-07-121-36/+32
|
* level zero literals, renamed plug-in, mypy updatesAnthon van der Neut2017-06-231-1/+1
|
* top-level folded/literal scalar col-00.15.6Anthon van der Neut2017-06-101-2/+18
|
* fix reset of scanner, reader, parser on multi-load0.15.5Anthon van der Neut2017-06-081-0/+2
|
* fix issue # 123: type annotations0.15.2Anthon van der Neut2017-06-071-2/+2
| | | | mypy needed updating from 0.501 to 0.511, with may different warnings/errors then before
* initial version with YAML class0.15.0Anthon van der Neut2017-06-041-1/+3
| | | | Some new tests are still required
* typing no longer needed, fix issue #117 (2.6 support)0.14.9Anthon van der Neut2017-04-221-3/+1
|
* fix issue 106, Text undefined in 3.5.10.14.1Anthon van der Neut2017-03-221-1/+4
| | | | Reported by Charles Bouchard-L?gar?
* update for mypy --strict, prepare de-inheritance (Loader/Dumper)0.14.0Anthon van der Neut2017-03-211-367/+411
|
* fix #99: no RT on block scalar + empty line + comment0.13.14Anthon van der Neut2017-02-121-8/+14
|
* fix spurious comment line0.13.13Anthon van der Neut2017-01-281-1/+0
|
* fix #96: RT indented mapping with empty line0.13.12Anthon van der Neut2017-01-281-4/+8
|
* allow ':' in flow-style scalar when not followed by space0.13.11Anthon van der Neut2017-01-231-4/+7
|
* fix for issue #72, dot allowed in anchorAnthon van der Neut2016-11-131-5/+8
|
* removed leftover print statement0.12.12Anthon van der Neut2016-09-061-2/+1
|
* fix for issue #58, endless loop in token scanningAnthon van der Neut2016-09-061-0/+4
|
* fix issue 54: space on empty lines break roundtrip0.12.7Anthon van der Neut2016-09-041-2/+25
|
* fix issue 36: gobbled empty lines in top-level mapping0.12.6Anthon van der Neut2016-09-031-0/+10
| | | | reported by Alex Harvey
* initial type info, drop 2.60.12.0Anthon van der Neut2016-08-151-9/+3
|
* pep8 compliance, util.load_yaml_guess_indent0.11.2Anthon van der Neut2016-02-271-3/+5
|
* - make sure there is a space before # if scalar pushes (through indent)Anthon van der Neut2016-02-161-4/+2
| | | | | a comment from its original column - flake 8
* Jython compatibilityAnthon van der Neut2015-10-081-3/+9
|
* - main problem in moving stuff from yaml/py to yaml was thatAnthon van der Neut2015-08-281-0/+1655
parser.py clashes with built-in parser module (CPython, C-module) which is inlucded from pkg_resources/__init__.py - no C compile yet