15
0

Accepting request 639359 from home:mimi_vx:branches:devel:languages:python

- update to 0.15.71
 *  added ``key`` and ``reverse`` parameter
 * indent root level literal scalars that have directive or document end
     markers at the beginning of a line
 * fix issue #232 revert to throw ParserError for unexcpected ``]``
     and ``}`` instead of IndexError.
 * fix issue with dump_all gobbling end-of-document comments on parsing
 * fix issue with parsabel, but incorrect output with nested flow-style sequences
 * fix issue with loading Python objects that have __setstate__ and recursion in parameters
 * reverted CommentedMap and CommentedSeq to subclass ordereddict resp. list,
    reimplemented merge maps so that both ``dict(**commented_map_instance)`` and JSON
    dumping works. This also allows checking with ``isinstance()`` on ``dict`` resp. ``list``.
 * fix regression where handcrafted CommentedMaps could not be initiated
 * fix regression with non-root literal scalars that needed indent indicator
 * tag:yaml.org,2002:python/object/apply now also uses __qualname__ on PY3

OBS-URL: https://build.opensuse.org/request/show/639359
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-ruamel.yaml?expand=0&rev=17
This commit is contained in:
Petr Cervinka
2018-10-01 12:05:41 +00:00
committed by Git OBS Bridge
parent c5a778ee91
commit b778fe59c4
4 changed files with 24 additions and 5 deletions

View File

@@ -1,3 +1,22 @@
-------------------------------------------------------------------
Mon Oct 1 09:59:45 UTC 2018 - Ondřej Súkup <mimi.vx@gmail.com>
- update to 0.15.71
* added ``key`` and ``reverse`` parameter
* indent root level literal scalars that have directive or document end
markers at the beginning of a line
* fix issue #232 revert to throw ParserError for unexcpected ``]``
and ``}`` instead of IndexError.
* fix issue with dump_all gobbling end-of-document comments on parsing
* fix issue with parsabel, but incorrect output with nested flow-style sequences
* fix issue with loading Python objects that have __setstate__ and recursion in parameters
* reverted CommentedMap and CommentedSeq to subclass ordereddict resp. list,
reimplemented merge maps so that both ``dict(**commented_map_instance)`` and JSON
dumping works. This also allows checking with ``isinstance()`` on ``dict`` resp. ``list``.
* fix regression where handcrafted CommentedMaps could not be initiated
* fix regression with non-root literal scalars that needed indent indicator
* tag:yaml.org,2002:python/object/apply now also uses __qualname__ on PY3
-------------------------------------------------------------------
Fri Aug 31 10:53:13 UTC 2018 - Ondřej Súkup <mimi.vx@gmail.com>