Changeset 195 for pyyaml/trunk/lib/yaml
- Timestamp:
- 06/19/06 16:30:29 (6 years ago)
- Files:
-
- 1 modified
-
pyyaml/trunk/lib/yaml/constructor.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
pyyaml/trunk/lib/yaml/constructor.py
r175 r195 5 5 from error import * 6 6 from nodes import * 7 from composer import *8 7 9 8 try: … … 23 22 pass 24 23 25 class BaseConstructor (Composer):24 class BaseConstructor: 26 25 27 26 yaml_constructors = {}
