summaryrefslogtreecommitdiff
path: root/_test/test_comments.py
Commit message (Collapse)AuthorAgeFilesLines
* oitnb formats all testsAnthon van der Neut2018-08-151-6/+9
|
* fix issue 102 now also for empty mappings with comments0.15.54Anthon van der Neut2018-08-131-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)*
* undid miswrapping of testsAnthon van der Neut2018-08-051-245/+120
|
* Apply oitnb and mypy 0.620, then make everything work again0.15.48Anthon van der Neut2018-08-031-132/+269
|
* Resolving issue #210 deprecation warning in python 3.7Anthon van der Neut2018-07-281-3/+6
| | | | | *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 regression caused by PR 270.15.42Anthon van der Neut2018-07-011-1/+1
|
* fix lists within lists with commentsAnthon van der Neut2017-08-131-0/+15
| | | | had to keep emit the comment and mark it for having been emitted, then reset on next run (as with maps)
* fix issue #25: dropping comment between mapping key and value0.15.24Anthon van der Neut2017-08-091-3/+1
|
* fix for indenting non-indented sequence after commentAnthon van der Neut2017-08-091-3/+3
| | | | | | - 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
* update testsAnthon van der Neut2017-08-091-10/+18
|
* more float stuff and mypy changesAnthon van der Neut2017-08-061-0/+50
|
* update to flake8==3.3.0 with --ignore F405Anthon van der Neut2017-07-121-0/+1
|
* fix #99: no RT on block scalar + empty line + comment0.13.14Anthon van der Neut2017-02-121-0/+21
|
* fix spurious comment line0.13.13Anthon van der Neut2017-01-281-0/+12
|
* fix #93: extra empty line inserted on roundtrip0.13.10Anthon van der Neut2017-01-221-0/+32
| | | | This happened only on comments between indented sequence elements
* addresses #25 comment after empty (null) values0.13.2Anthon van der Neut2016-11-281-0/+32
| | | | can remove comment between key en value
* fix for issue #60, merges not printing correctly0.12.13Anthon van der Neut2016-09-151-0/+23
| | | | reported by Tal Liron
* fix for issue #58, endless loop in token scanningAnthon van der Neut2016-09-061-0/+23
|
* rewrite of 32 bit support based on exception0.12.10Anthon van der Neut2016-09-051-1/+1
|
* 32 bit unicode not supported on MacOS, fixes issue #560.12.9Anthon van der Neut2016-09-051-0/+2
| | | | reported by (David Tagatac)
* ignore full range of specified characters0.12.8Anthon van der Neut2016-09-051-1/+21
| | | | Fix for issue #55, incorporating pull request #11 both by Harguroicha Hsu
* fix issue 54: space on empty lines break roundtrip0.12.7Anthon van der Neut2016-09-041-0/+22
|
* fix issue 36: gobbled empty lines in top-level mapping0.12.6Anthon van der Neut2016-09-031-0/+79
| | | | reported by Alex Harvey
* operator "in" for merged mapsAnthon van der Neut2016-08-171-0/+18
|
* allow insert in CommentedMap (Py3) and add comment0.11.11Anthon van der Neut2016-05-021-0/+49
| | | | | | | | The insert() would only be available for CommentedMap on Py2 (thanks to ruamel.ordereddict). The standard library lacks this functionality. The method was added in the compatibility layer, and on CommentedMap the optional comment parameter allows directly setting an end-of-line comment on the inserted key.
* fix encoding of comments0.11.7Anthon van der Neut2016-03-051-1/+26
|
* pep8 compliance, util.load_yaml_guess_indent0.11.2Anthon van der Neut2016-02-271-37/+21
|
* - added CommentedSeq insert and pop with moving comments0.10.23Anthon van der Neut2016-02-171-0/+134
| | | | (issue brought up by Michael Sarahan)
* - make sure there is a space before # if scalar pushes (through indent)Anthon van der Neut2016-02-161-3/+14
| | | | | a comment from its original column - flake 8
* moved test to _test to prevent setuptools from including test/test_*.py0.10.17Anthon van der Neut2016-01-221-0/+271
although the package dirs were explicitly specified. This used to lead to half included, non-working test directory contents that have no place in a distribution. This fixes issue #17