summaryrefslogtreecommitdiff
path: root/_test/roundtrip.py
Commit message (Collapse)AuthorAgeFilesLines
* remove support for 2.7, prepare for f-strings0.17.0Anthon van der Neut2021-03-261-5/+6
|
* remove python 2 specific codeAnthon van der Neut2021-03-091-29/+64
| | | | add future deprecation warning to old style functions
* allow # in 1.2 URI's0.16.2Anthon van der Neut2019-08-151-4/+2
| | | | | | | fixes issue #305 *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))*
* preserve directives, optional push root level scalar to own lineAnthon van der Neut2019-08-151-0/+49
| | | | | | | | | | You need to set YAML().scalar_after_indicator = False to get a single scalar document starting on its own line (instead of after the directives end indicator: --- abc") fixes issue #304 *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 #245 regression on C parsing of explicit 1.1 source0.15.72Anthon van der Neut2018-10-061-0/+4
| | | | | *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))*
* test hierarchy, per file creation/loading of YAMLAnthon van der Neut2018-10-021-1/+2
|
* added Python -> YAML testingAnthon van der Neut2018-10-021-2/+5
|
* cleanup of commented out xfails, added some (most failing) rt tests for spec ↵Anthon van der Neut2018-08-291-1/+18
| | | | examples
* allow simple mappings as mapping keysAnthon van der Neut2018-08-161-0/+3
|
* added failing test re #220 .pop optimized awayAnthon van der Neut2018-08-151-2/+5
|
* fix issue #124: incorrect tags for class methodsAnthon van der Neut2018-08-081-1/+1
|
* Apply oitnb and mypy 0.620, then make everything work again0.15.48Anthon van der Neut2018-08-031-32/+68
|
* added captured DeprecationWarning test0.15.46Anthon van der Neut2018-07-291-0/+28
|
* Resolving issue #210 deprecation warning in python 3.7Anthon van der Neut2018-07-281-49/+57
| | | | | *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 issue #51: separate indent levels for mappings and sequences0.15.29Anthon van der Neut2017-08-141-0/+15
| | | | **When this resolves the reported problem, please close this issue**
* fix lists within lists with commentsAnthon van der Neut2017-08-131-2/+3
| | | | had to keep emit the comment and mark it for having been emitted, then reset on next run (as with maps)
* update testsAnthon van der Neut2017-08-091-1/+17
|
* scalarfloat supportAnthon van der Neut2017-08-061-0/+1
|
* fix https://stackoverflow.com/a/45281922/13079050.15.21Anthon van der Neut2017-07-251-1/+1
|
* added register_class/yaml_object0.15.19Anthon van der Neut2017-07-131-0/+12
|
* update to flake8==3.3.0 with --ignore F405Anthon van der Neut2017-07-121-1/+1
|
* level zero literals, renamed plug-in, mypy updatesAnthon van der Neut2017-06-231-0/+15
|
* top-level folded/literal scalar col-00.15.6Anthon van der Neut2017-06-101-0/+10
|
* fixes issue #103Anthon van der Neut2017-05-011-5/+26
|
* round-trip sequence key elements0.12.14Anthon van der Neut2016-09-211-5/+8
|
* fix issue 36: gobbled empty lines in top-level mapping0.12.6Anthon van der Neut2016-09-031-2/+4
| | | | reported by Alex Harvey
* fix issue 45: preserve datetime 'T' + timezoneAnthon van der Neut2016-08-201-0/+4
|
* added optional preservation of quotes around scalarsAnthon van der Neut2016-07-061-4/+5
|
* allow "indent=2, block_seq_indent=2"0.11.10Anthon van der Neut2016-04-191-3/+3
|
* added top_level_colon_align/prefix_colon0.11.9Anthon van der Neut2016-04-141-8/+13
|
* fix some commen indentation problems0.11.3Anthon van der Neut2016-02-271-5/+6
| | | | | | | | | | | - scalars now follow the indent value in block sequences - there is an extra keyword parameter block_seq_indent that allows you to push the dash inward within the indent space (indent=4, block_seq_indent=2) x: - b: 1 - 2
* pep8 compliance, util.load_yaml_guess_indent0.11.2Anthon van der Neut2016-02-271-11/+12
|
* - make sure there is a space before # if scalar pushes (through indent)Anthon van der Neut2016-02-161-2/+2
| | | | | 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/+54
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