summaryrefslogtreecommitdiff
path: root/emitter.py
Commit message (Collapse)AuthorAgeFilesLines
...
* initial version with YAML class0.15.0Anthon van der Neut2017-06-041-17/+33
| | | | Some new tests are still required
* preserve value type, support pathlib.Path as streamAnthon van der Neut2017-05-291-2/+7
|
* typing no longer needed, fix issue #117 (2.6 support)0.14.9Anthon van der Neut2017-04-221-4/+1
|
* fix issue 106, Text undefined in 3.5.10.14.1Anthon van der Neut2017-03-221-2/+5
| | | | Reported by Charles Bouchard-L?gar?
* update for mypy --strict, prepare de-inheritance (Loader/Dumper)0.14.0Anthon van der Neut2017-03-211-51/+119
|
* some changes for mypy --strictAnthon van der Neut2017-03-161-1/+1
|
* allow ':' in flow-style scalar when not followed by space0.13.11Anthon van der Neut2017-01-231-1/+1
|
* fix #93: extra empty line inserted on roundtrip0.13.10Anthon van der Neut2017-01-221-1/+0
| | | | This happened only on comments between indented sequence elements
* fix for issue #72, dot allowed in anchorAnthon van der Neut2016-11-131-3/+6
|
* round-trip sequence key elements0.12.14Anthon van der Neut2016-09-211-2/+5
|
* initial type info, drop 2.60.12.0Anthon van der Neut2016-08-151-9/+4
|
* allow "indent=2, block_seq_indent=2"0.11.10Anthon van der Neut2016-04-191-4/+12
|
* added top_level_colon_align/prefix_colon0.11.9Anthon van der Neut2016-04-141-10/+22
|
* fix encoding of comments0.11.7Anthon van der Neut2016-03-051-2/+2
|
* fix some commen indentation problems0.11.3Anthon van der Neut2016-02-271-2/+5
| | | | | | | | | | | - 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
* implement indent for scalar list elementsAnthon van der Neut2016-02-271-2/+3
|
* pep8 compliance, util.load_yaml_guess_indent0.11.2Anthon van der Neut2016-02-271-30/+28
|
* - introducing version support and differentiation for RoundTripLoader0.11.0Anthon van der Neut2016-02-181-6/+7
| | | | | | 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/+20
| | | | | a comment from its original column - flake 8
* fix #20Anthon van der Neut2016-01-181-1/+2
|
* minor 3.x compatibility changes in helper script make_win_whl.pyAnthon van der Neut2016-01-081-0/+4
|
* 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/+1237
parser.py clashes with built-in parser module (CPython, C-module) which is inlucded from pkg_resources/__init__.py - no C compile yet