summaryrefslogtreecommitdiff
path: root/main.py
Commit message (Collapse)AuthorAgeFilesLines
* 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