Changeset 55 for branches/pyyaml3000/lib/yaml/nodes.py
- Timestamp:
- 02/22/06 19:18:34 (7 years ago)
- File:
-
- 1 edited
-
branches/pyyaml3000/lib/yaml/nodes.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/pyyaml3000/lib/yaml/nodes.py
r53 r55 23 23 24 24 class ScalarNode(Node): 25 pass25 id = 'scalar' 26 26 27 27 class CollectionNode(Node): … … 29 29 30 30 class SequenceNode(CollectionNode): 31 pass31 id = 'sequence' 32 32 33 33 class MappingNode(CollectionNode): 34 pass34 id = 'mapping' 35 35
Note: See TracChangeset
for help on using the changeset viewer.
