summaryrefslogtreecommitdiff
path: root/.hgignore
Commit message (Collapse)AuthorAgeFilesLines
* retrofitted 0.18 changesAnthon van der Neut2023-05-011-0/+1
|
* bug in YAML.compose(Path(...)))0.17.21Anthon van der Neut2022-02-121-0/+2
|
* remove support for 2.7, prepare for f-strings0.17.0Anthon van der Neut2021-03-261-0/+2
|
* test for StopIterationAnthon van der Neut2018-07-261-1/+0
|
* several PRs mergedAnthon van der Neut2018-06-131-0/+7
|
* added register_class/yaml_object0.15.19Anthon van der Neut2017-07-131-0/+1
|
* level zero literals, renamed plug-in, mypy updates0.15.10Anthon van der Neut2017-06-231-4/+0
|
* level zero literals, renamed plug-in, mypy updatesAnthon van der Neut2017-06-231-21/+3
|
* enable: pip install ruamel.yaml[jinja2]0.15.8Anthon van der Neut2017-06-151-1/+0
|
* build new version0.14.5Anthon van der Neut2017-04-041-0/+1
|
* update for mypy --strict, prepare de-inheritance (Loader/Dumper)0.14.0Anthon van der Neut2017-03-211-1/+1
|
* some changes for mypy --strictAnthon van der Neut2017-03-161-0/+1
|
* this should fix #75: continuing problems with numpy0.12.18Anthon van der Neut2016-11-161-1/+0
|
* fix issue #74: YAML 1.2 support for non-round-trip loaders0.12.17Anthon van der Neut2016-11-151-0/+1
|
* added optional preservation of quotes around scalarsAnthon van der Neut2016-07-061-0/+1
|
* guessing routine, RTD supportAnthon van der Neut2016-02-291-0/+1
| | | | | | - guessing routine now returns block_seq_indent guess as well as indent guess - split README.rst up into _doc/*.rst entries
* - initial test for appveyor builds of windows wheelsAnthon van der Neut2016-01-301-3/+9
|
* Test and fix for #22, collections.OrderedDict could not0.10.16Anthon van der Neut2016-01-221-0/+2
| | | | be represented/dumped
* checking cythonAnthon van der Neut2015-09-121-1/+1
|
* - main problem in moving stuff from yaml/py to yaml was thatAnthon van der Neut2015-08-281-0/+1
| | | | | | parser.py clashes with built-in parser module (CPython, C-module) which is inlucded from pkg_resources/__init__.py - no C compile yet
* removed utilityAnthon van der Neut2015-08-271-0/+3
|
* initial test and first step implementation to preserve (flow) styleAnthon van der Neut2015-03-261-0/+1
|
* check using distribute compilerAnthon van der Neut2015-03-101-0/+1
|
* - add ext/_yaml.c etc to the source treeAnthon van der Neut2014-11-231-0/+1
| | | | - tests for yaml to work on 2.6/3.3/3.4
* - merge py2 and py3 code basesAnthon van der Neut2014-11-221-0/+11
- remove support for 2.5/3.0/3.1/3.2 (this merge relies on u"" as available in 3.3 and . imports not available in 2.5) - tox.ini for 2.7/3.4/2.6/3.3 - remove lib3/ and tests/lib3 directories and content - commit - correct --verbose for test application - DATA=changed to be relative to __file__ of code - DATA using os.sep - remove os.path from imports as os is already imported - have test_yaml.py exit with value 0 on success, 1 on failures, 2 on error - added support for octal integers starting with '0o' keep support for 01234 as well as 0o1234 - commit - added test_roundtrip_data: requirest a .data file and .roundtrip (empty), yaml_load .data and compare dump against original. - fix grammar as per David Pursehouse: https://bitbucket.org/xi/pyyaml/pull-request/5/fix-grammar-in-error-messages/diff - http://www.json.org/ extra escaped char \/ add .skip-ext as libyaml is not updated - David Fraser: Extract a method to represent keys in mappings, so that a subclass can choose not to quote them, used in repesent_mapping https://bitbucket.org/davidfraser/pyyaml/ - add CommentToken and percolate through parser and composer and constructor - add Comments to wrapped mapping and sequence constructs (not to scalars) - generate YAML with comments - initial README