Changeset 158
- Timestamp:
- 05/11/06 17:27:20 (7 years ago)
- File:
-
- 1 edited
-
pyyaml/trunk/lib/yaml/resolver.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
pyyaml/trunk/lib/yaml/resolver.py
r155 r158 52 52 elif node_check is list: 53 53 node_check = SequenceNode 54 elif node_check is map:54 elif node_check is dict: 55 55 node_check = MappingNode 56 56 elif node_check not in [ScalarNode, SequenceNode, MappingNode] \ … … 66 66 elif kind is list: 67 67 kind = SequenceNode 68 elif kind is map:68 elif kind is dict: 69 69 kind = MappingNode 70 70 elif kind not in [ScalarNode, SequenceNode, MappingNode] \
Note: See TracChangeset
for help on using the changeset viewer.
