Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | re-added test to make sure C-Compiler is available0.15.41 | Anthon van der Neut | 2018-06-27 | 1 | -11/+11 | |
| | ||||||
* | Fix typos | Andrey Somov | 2018-05-21 | 1 | -1/+1 | |
| | ||||||
* | round-trip support for tagged scalars0.15.33 | Anthon van der Neut | 2017-08-31 | 1 | -0/+6 | |
| | | | | | Inspired by Matthew Patton's question on StackOverflow: https://stackoverflow.com/a/45967047/1307905 | |||||
* | fix comment dumping0.15.31 | Anthon van der Neut | 2017-08-15 | 1 | -4/+6 | |
| | ||||||
* | issue #61: merge of merge cannot be __repr__-ed (reported by Tal Liron)0.15.28 | Anthon van der Neut | 2017-08-13 | 1 | -2/+2 | |
| | | | | **When this change resolves your problem, then please close this issue** | |||||
* | fix issue #62: not allowing : or ? in flow style plain scalar0.15.27 | Anthon van der Neut | 2017-08-13 | 1 | -2/+3 | |
| | | | | also fix list withing list comment dropping, as it happened to occur in the example | |||||
* | fix lists within lists with comments | Anthon van der Neut | 2017-08-13 | 1 | -2/+3 | |
| | | | | had to keep emit the comment and mark it for having been emitted, then reset on next run (as with maps) | |||||
* | fix issue #102: comment disappear after empty flow-style sequence | Anthon van der Neut | 2017-08-10 | 1 | -0/+20 | |
| | | | | **When this fix solves the reported problem, please close this issue.** | |||||
* | more float stuff and mypy changes | Anthon van der Neut | 2017-08-06 | 1 | -0/+1 | |
| | ||||||
* | fix for issue #143: handling single excl mark tags0.15.22 | Anthon van der Neut | 2017-07-28 | 1 | -0/+3 | |
| | | | | There were no tests for roundtripping tags for non-registered objects | |||||
* | update to flake8==3.3.0 with --ignore F405 | Anthon van der Neut | 2017-07-12 | 1 | -6/+6 | |
| | ||||||
* | correct typing info on comment Token | Anthon van der Neut | 2017-06-27 | 1 | -1/+1 | |
| | | | | | | | fixes issue #136: reported by Manvendra Singh Please close this issue if you can confirm it solves the reported problem (this should be in > 0.15.15 when it comes out) | |||||
* | fix issue # 123: type annotations0.15.2 | Anthon van der Neut | 2017-06-07 | 1 | -2/+6 | |
| | | | | mypy needed updating from 0.501 to 0.511, with may different warnings/errors then before | |||||
* | preserve value type, support pathlib.Path as stream | Anthon van der Neut | 2017-05-29 | 1 | -1/+22 | |
| | ||||||
* | fix __deepcopy__ class hardcoding in CommentedSeq and CommentedMap | Constantine Evans | 2017-05-08 | 1 | -2/+2 | |
| | ||||||
* | typing no longer needed, fix issue #117 (2.6 support)0.14.9 | Anthon van der Neut | 2017-04-22 | 1 | -2/+1 | |
| | ||||||
* | fix issue #116: Text not available in 3.5.0/3.5.10.14.8 | Anthon van der Neut | 2017-04-19 | 1 | -1/+4 | |
| | | | | If this solves the issue for you, please close it. | |||||
* | update for mypy --strict, prepare de-inheritance (Loader/Dumper)0.14.0 | Anthon van der Neut | 2017-03-21 | 1 | -4/+4 | |
| | ||||||
* | some changes for mypy --strict | Anthon van der Neut | 2017-03-16 | 1 | -18/+134 | |
| | ||||||
* | fix #84, deepcopy not working (reported by Peter Amstutz)0.13.5 | Anthon van der Neut | 2016-12-25 | 1 | -0/+26 | |
| | | | | added test, implemented __deepcopy__ on CommentedMap and CommentedSeq | |||||
* | addresses #25 comment after empty (null) values0.13.2 | Anthon van der Neut | 2016-11-28 | 1 | -1/+3 | |
| | | | | can remove comment between key en value | |||||
* | memory usage optimisations0.13.1 | Anthon van der Neut | 2016-11-22 | 1 | -14/+15 | |
| | ||||||
* | fix #6: non-safe load() now issues warning0.13.0 | Anthon van der Neut | 2016-11-20 | 1 | -1/+31 | |
| | | | | added method to add before/after comments on specific keys | |||||
* | comments.py: Remove debug message | Jean-christophe Fillion-Robin | 2016-11-03 | 1 | -1/+0 | |
| | | | | This commit removes a debug message inadvertently introduced in a9abad0 | |||||
* | round-trip sequence key elements0.12.14 | Anthon van der Neut | 2016-09-21 | 1 | -2/+45 | |
| | ||||||
* | removed print statement | Anthon van der Neut | 2016-09-15 | 1 | -1/+0 | |
| | ||||||
* | fix for issue #60, merges not printing correctly0.12.13 | Anthon van der Neut | 2016-09-15 | 1 | -0/+6 | |
| | | | | reported by Tal Liron | |||||
* | fix merge, iteration, reused anchors0.12.3 | Anthon van der Neut | 2016-08-18 | 1 | -13/+124 | |
| | ||||||
* | added .keys(), items(), values(), corrected __contains__ | Anthon van der Neut | 2016-08-17 | 1 | -2/+94 | |
| | | | | | | | | | | 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) | |||||
* | operator "in" for merged maps | Anthon van der Neut | 2016-08-17 | 1 | -0/+8 | |
| | ||||||
* | initial type info, drop 2.60.12.0 | Anthon van der Neut | 2016-08-15 | 1 | -9/+4 | |
| | ||||||
* | allow insert in CommentedMap (Py3) and add comment0.11.11 | Anthon van der Neut | 2016-05-02 | 1 | -0/+8 | |
| | | | | | | | | 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. | |||||
* | pep8 compliance, util.load_yaml_guess_indent0.11.2 | Anthon van der Neut | 2016-02-27 | 1 | -3/+22 | |
| | ||||||
* | - added CommentedSeq insert and pop with moving comments0.10.23 | Anthon van der Neut | 2016-02-17 | 1 | -0/+17 | |
| | | | | (issue brought up by Michael Sarahan) | |||||
* | - make sure there is a space before # if scalar pushes (through indent) | Anthon van der Neut | 2016-02-16 | 1 | -3/+6 | |
| | | | | | a comment from its original column - flake 8 | |||||
* | Jython compatibility | Anthon van der Neut | 2015-10-08 | 1 | -1/+7 | |
| | ||||||
* | Fix issue 9: return tuple from lc.item(idx) | Anthon van der Neut | 2015-09-14 | 1 | -1/+1 | |
| | ||||||
* | Fix issue 9 | Anthon van der Neut | 2015-09-14 | 1 | -0/+35 | |
| | | | | Added possibility to store and retrieve mapping and sequence element positions | |||||
* | - main problem in moving stuff from yaml/py to yaml was that | Anthon van der Neut | 2015-08-28 | 1 | -0/+393 | |
parser.py clashes with built-in parser module (CPython, C-module) which is inlucded from pkg_resources/__init__.py - no C compile yet |