summaryrefslogtreecommitdiff
path: root/main.py
Commit message (Collapse)AuthorAgeFilesLines
...
* fix reset of scanner, reader, parser on multi-load0.15.5Anthon van der Neut2017-06-081-0/+16
|
* added `transform` parameter to `dump`, to post-process output before writing0.15.4Anthon van der Neut2017-06-081-12/+14
|
* fix issue # 123: type annotations0.15.2Anthon van der Neut2017-06-071-7/+7
| | | | mypy needed updating from 0.501 to 0.511, with may different warnings/errors then before
* error/warning on duplicate mapping keys0.15.1Anthon van der Neut2017-06-071-2/+5
|
* initial version with YAML class0.15.0Anthon van der Neut2017-06-041-0/+380
| | | | Some new tests are still required
* fix problem in cdav/ooo.py safe-dumping with cyaml0.14.10Anthon van der Neut2017-04-261-3/+15
|
* typing no longer needed, fix issue #117 (2.6 support)0.14.9Anthon van der Neut2017-04-221-4/+2
|
* fix issue 106, Text undefined in 3.5.10.14.1Anthon van der Neut2017-03-221-3/+4
| | | | Reported by Charles Bouchard-L?gar?
* update for mypy --strict, prepare de-inheritance (Loader/Dumper)0.14.0Anthon van der Neut2017-03-211-66/+175
|
* changes for mypyAnthon van der Neut2017-03-171-5/+31
|
* some changes for mypy --strictAnthon van der Neut2017-03-161-0/+1
|
* fix #6: non-safe load() now issues warning0.13.0Anthon van der Neut2016-11-201-2/+12
| | | | added method to add before/after comments on specific keys
* Fix for issue #70 no preserve_quotes on _load_all0.12.15Anthon van der Neut2016-10-281-2/+2
|
* further tweaking for running mypy in schema_salad0.12.2Anthon van der Neut2016-08-161-1/+0
|
* initial type info, drop 2.60.12.0Anthon van der Neut2016-08-151-6/+13
|
* added optional preservation of quotes around scalarsAnthon van der Neut2016-07-061-6/+6
|
* added top_level_colon_align/prefix_colon0.11.9Anthon van der Neut2016-04-141-4/+10
|
* documentation now on read-the-docs0.11.5Anthon van der Neut2016-02-291-5/+7
|
* guessing routine, RTD supportAnthon van der Neut2016-02-291-0/+17
| | | | | | - guessing routine now returns block_seq_indent guess as well as indent guess - split README.rst up into _doc/*.rst entries
* fix some commen indentation problems0.11.3Anthon van der Neut2016-02-271-6/+7
| | | | | | | | | | | - scalars now follow the indent value in block sequences - there is an extra keyword parameter block_seq_indent that allows you to push the dash inward within the indent space (indent=4, block_seq_indent=2) x: - b: 1 - 2
* pep8 compliance, util.load_yaml_guess_indent0.11.2Anthon van der Neut2016-02-271-0/+1
|
* - introducing version support and differentiation for RoundTripLoader0.11.0Anthon van der Neut2016-02-181-8/+25
| | | | | | 1.2 no longer interprets sexagesimals, octals wihtout 0o, Yes/No/On/Off by default - added round_trip_load/round_trip_load_all
* - make sure there is a space before # if scalar pushes (through indent)Anthon van der Neut2016-02-161-9/+8
| | | | | a comment from its original column - flake 8
* - main problem in moving stuff from yaml/py to yaml was thatAnthon van der Neut2015-08-281-0/+352
parser.py clashes with built-in parser module (CPython, C-module) which is inlucded from pkg_resources/__init__.py - no C compile yet