summaryrefslogtreecommitdiff
path: root/compat.py
Commit message (Collapse)AuthorAgeFilesLines
* fix #92: typo in import0.13.9Anthon van der Neut2017-01-191-1/+1
| | | | reported by the-corinthian
* memory usage optimisations0.13.1Anthon van der Neut2016-11-221-0/+14
|
* fix for issue #72, dot allowed in anchorAnthon van der Neut2016-11-131-0/+20
|
* rewrite of 32 bit support based on exception0.12.10Anthon van der Neut2016-09-051-6/+0
|
* 32 bit unicode not supported on MacOS, fixes issue #560.12.9Anthon van der Neut2016-09-051-0/+7
| | | | reported by (David Tagatac)
* further tweaking for running mypy in schema_salad0.12.2Anthon van der Neut2016-08-161-2/+3
|
* initial type info, drop 2.60.12.0Anthon van der Neut2016-08-151-7/+7
|
* allow insert in CommentedMap (Py3) and add comment0.11.11Anthon van der Neut2016-05-021-1/+14
| | | | | | | | 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.2Anthon van der Neut2016-02-271-0/+1
|
* - main problem in moving stuff from yaml/py to yaml was thatAnthon van der Neut2015-08-281-0/+106
parser.py clashes with built-in parser module (CPython, C-module) which is inlucded from pkg_resources/__init__.py - no C compile yet