comparison planemo/lib/python3.7/site-packages/ruamel/yaml/anchor.py @ 1:56ad4e20f292 draft

"planemo upload commit 6eee67778febed82ddd413c3ca40b3183a3898f1"
author guerler
date Fri, 31 Jul 2020 00:32:28 -0400
parents
children
comparison
equal deleted inserted replaced
0:d30785e31577 1:56ad4e20f292
1
2
3 anchor_attrib = '_yaml_anchor'
4
5
6 class Anchor(object):
7 __slots__ = 'value', 'always_dump'
8 attrib = anchor_attrib
9
10 def __init__(self):
11 # type: () -> None
12 self.value = None
13 self.always_dump = False