Changeset 133 for pyyaml/trunk/lib/yaml/events.py
- Timestamp:
- 04/10/06 20:34:16 (7 years ago)
- File:
-
- 1 edited
-
pyyaml/trunk/lib/yaml/events.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
pyyaml/trunk/lib/yaml/events.py
r132 r133 36 36 def __init__(self, start_mark=None, end_mark=None, 37 37 encoding=None, line_break=None, canonical=None, 38 indent=None, width=None ):38 indent=None, width=None, allow_unicode=None): 39 39 self.start_mark = start_mark 40 40 self.end_mark = end_mark … … 44 44 self.indent = indent 45 45 self.width = width 46 self.allow_unicode = allow_unicode 46 47 47 48 class StreamEndEvent(Event):
Note: See TracChangeset
for help on using the changeset viewer.
