comparison env/lib/python3.7/site-packages/ruamel/yaml/anchor.py @ 5:9b1c78e6ba9c draft default tip

"planemo upload commit 6c0a8142489327ece472c84e558c47da711a9142"
author shellac
date Mon, 01 Jun 2020 08:59:25 -0400
parents 79f47841a781
children
comparison
equal deleted inserted replaced
4:79f47841a781 5:9b1c78e6ba9c
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