summaryrefslogtreecommitdiff
path: root/_test/test_anchor.py
Commit message (Collapse)AuthorAgeFilesLines
* retrofitted 0.18 changesAnthon van der Neut2023-05-011-44/+44
|
* remove python 2 specific codeAnthon van der Neut2021-03-091-37/+33
| | | | add future deprecation warning to old style functions
* fixes issue #254 single question mark not dumped with quotes0.15.75Anthon van der Neut2018-10-271-1/+1
| | | | | | | | | introduced re issue #62 for version 0.15.27 test in ruamel.yaml.data/special/single_indicator.yaml *When this change indeed resolves your problem, please **Close** this issue*. *(You can do so using the WorkFlow pull-down (close to the top right of this page))*
* fix issue 251 error on multiple merge keysAnthon van der Neut2018-10-171-3/+25
|
* fix issue #196 loosing items on cast to dict0.15.52Anthon van der Neut2018-08-091-3/+12
| | | | | *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)*
* adding test for issue 196Anthon van der Neut2018-08-091-1/+43
|
* fix issue #213 : CommentedMap.copy() incomplete resultAnthon van der Neut2018-08-081-0/+17
| | | | | | | | Only the "native" keys were copied, not any of the merged keys. Now .copy() is implemented and a "flattened" new dict is returned. *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-44/+22
|
* Apply oitnb and mypy 0.620, then make everything work again0.15.48Anthon van der Neut2018-08-031-42/+90
|
* Resolving issue #210 deprecation warning in python 3.7Anthon van der Neut2018-07-281-3/+3
| | | | | *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)*
* re-added test to make sure C-Compiler is available0.15.41Anthon van der Neut2018-06-271-4/+4
|
* fix issue #130: warning on duplicates in merge key mapping0.15.13Anthon van der Neut2017-06-241-0/+24
|
* fix issue #130: regression in nested mergesAnthon van der Neut2017-06-241-0/+23
|
* error/warning on duplicate mapping keys0.15.1Anthon van der Neut2017-06-071-0/+26
|
* fix for issue #72, dot allowed in anchorAnthon van der Neut2016-11-131-2/+32
|
* fix merge, iteration, reused anchors0.12.3Anthon van der Neut2016-08-181-0/+37
|
* added .keys(), items(), values(), corrected __contains__Anthon van der Neut2016-08-171-1/+60
| | | | | | | | | | There was a huge problem with 3.4 and 3.3 as the OrderedDict does not define a __contains__ and the implementation based on the one by Ngo would not work with merge keys defining keys that later were in the main dict (which should override). Fix was to add the merge key info at the point the dict has been completely created, thus restricting __contains__ automatically to the dict itself (and not test subkeys)
* pep8 compliance, util.load_yaml_guess_indent0.11.2Anthon van der Neut2016-02-271-1/+0
|
* - make sure there is a space before # if scalar pushes (through indent)Anthon van der Neut2016-02-161-11/+12
| | | | | 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/+229
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