Make compose() and load() ensure that the input stream contains a single document...
[pyyaml/python3.git] / tests / data / recursive-set.recursive
blob457c50dee428bc60d0eca23b5af4e4fdd4caf507
1 try:
2     set
3 except NameError:
4     from sets import Set as set
5 value = set()
6 value.add(AnInstance(foo=value, bar=value))
7 value.add(AnInstance(foo=value, bar=value))