Changeset 222 for pyyaml/trunk/lib/yaml/emitter.py
- Timestamp:
- 08/03/06 12:07:29 (7 years ago)
- File:
-
- 1 edited
-
pyyaml/trunk/lib/yaml/emitter.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
pyyaml/trunk/lib/yaml/emitter.py
r218 r222 17 17 pass 18 18 19 class ScalarAnalysis :19 class ScalarAnalysis(object): 20 20 def __init__(self, scalar, empty, multiline, 21 21 allow_flow_plain, allow_block_plain, … … 31 31 self.allow_block = allow_block 32 32 33 class Emitter :33 class Emitter(object): 34 34 35 35 DEFAULT_TAG_PREFIXES = {
Note: See TracChangeset
for help on using the changeset viewer.
