summaryrefslogtreecommitdiff
path: root/tokens.py
Commit message (Collapse)AuthorAgeFilesLines
* retrofitted 0.18 changesAnthon van der Neut2023-05-011-71/+46
|
* old end-of-list comment can have five positions0.17.10Anthon van der Neut2021-06-241-1/+1
|
* fix 385 (missing attribute) and mypy issues0.17.6Anthon van der Neut2021-05-311-10/+17
|
* Fix type annotationsJochen Sprickerhof2021-05-301-1/+1
| | | | column was added in fd2ef3 but it seems unused so not sure about the type.
* fix for issue 3840.17.5Anthon van der Neut2021-05-301-14/+15
| | | | aliased scalars in !!set would not round trip with ?
* * extend EOL token handlingAnthon van der Neut2021-05-061-6/+8
| | | | * extending comment
* removed (object), prepare new RTScannerAnthon van der Neut2021-04-191-19/+115
|
* remove support for 2.7, prepare for f-strings0.17.0Anthon van der Neut2021-03-261-0/+11
|
* remove python 2 specific codeAnthon van der Neut2021-03-091-4/+5
| | | | add future deprecation warning to old style functions
* mypy, split contruct_object0.16.3Anthon van der Neut2019-08-151-0/+2
| | | | | | | | fixes issue #306 *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))*
* allow dump of deepcopied data from commented YAML0.15.100Anthon van der Neut2019-07-171-0/+12
| | | | | | | fixes issue #295 *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))*
* indentation of comments after folded/lit scalars0.15.96Anthon van der Neut2019-05-161-0/+1
| | | | | | | | fixes issue #290 *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 #239 dropping comments before document-end on load_all0.15.69Anthon van der Neut2018-09-201-1/+1
| | | | | *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))*
* mypy updateAnthon van der Neut2018-08-251-8/+11
|
* fix issue #163 comment disappearing in list before flow mappingAnthon van der Neut2018-08-121-0/+4
| | | | | | | should be fixed in 0.15.54 *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 #175 exception while raising errorAnthon van der Neut2018-08-091-1/+1
|
* Apply oitnb and mypy 0.620, then make everything work again0.15.48Anthon van der Neut2018-08-031-10/+10
|
* re-added test to make sure C-Compiler is available0.15.41Anthon van der Neut2018-06-271-2/+2
|
* fix comment dumping0.15.31Anthon van der Neut2017-08-151-2/+2
|
* fix issue #25: dropping comment between mapping key and value0.15.24Anthon van der Neut2017-08-091-19/+6
|
* fix for indenting non-indented sequence after commentAnthon van der Neut2017-08-091-4/+17
| | | | | | - solves several expected to fail and fixes two incorrect tests (test_09-Sammy Sosa & test_before_nested_seq_from_scratch) - still swaps foo and bar on test_issue_25_03
* remove debug statementsAnthon van der Neut2017-08-091-5/+5
|
* python 2.7 changes float round-trippignAnthon van der Neut2017-08-071-2/+19
|
* more float stuff and mypy changesAnthon van der Neut2017-08-061-0/+1
|
* more useful CommentToken dumpingAnthon van der Neut2017-08-051-0/+3
|
* typing no longer needed, fix issue #117 (2.6 support)0.14.9Anthon van der Neut2017-04-221-2/+1
|
* fix issue #116: Text not available in 3.5.0/3.5.10.14.8Anthon van der Neut2017-04-191-1/+3
| | | | If this solves the issue for you, please close it.
* update for mypy --strict, prepare de-inheritance (Loader/Dumper)0.14.0Anthon van der Neut2017-03-211-0/+17
|
* some changes for mypy --strictAnthon van der Neut2017-03-161-0/+1
|
* addresses #25 comment after empty (null) values0.13.2Anthon van der Neut2016-11-281-1/+7
| | | | can remove comment between key en value
* memory usage optimisations0.13.1Anthon van der Neut2016-11-221-2/+25
|
* pep8 compliance, util.load_yaml_guess_indent0.11.2Anthon van der Neut2016-02-271-0/+3
|
* - make sure there is a space before # if scalar pushes (through indent)Anthon van der Neut2016-02-161-1/+1
| | | | | a comment from its original column - flake 8
* Fix Issue 11, double dump lost commentsAnthon van der Neut2015-09-141-0/+4
| | | | | The state 'pre_done' to keep comments from being printed twice was not cleared and on second dump would result in non-printing
* - main problem in moving stuff from yaml/py to yaml was thatAnthon van der Neut2015-08-281-0/+188
parser.py clashes with built-in parser module (CPython, C-module) which is inlucded from pkg_resources/__init__.py - no C compile yet