Changeset 136 for pyyaml/trunk/lib/yaml/events.py
- Timestamp:
- 04/15/06 19:54:52 (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
r133 r136 34 34 35 35 class StreamStartEvent(Event): 36 def __init__(self, start_mark=None, end_mark=None, 37 encoding=None, line_break=None, canonical=None, 38 indent=None, width=None, allow_unicode=None): 36 def __init__(self, start_mark=None, end_mark=None, encoding=None): 39 37 self.start_mark = start_mark 40 38 self.end_mark = end_mark 41 39 self.encoding = encoding 42 self.line_break = line_break43 self.canonical = canonical44 self.indent = indent45 self.width = width46 self.allow_unicode = allow_unicode47 40 48 41 class StreamEndEvent(Event): … … 69 62 70 63 class ScalarEvent(NodeEvent): 71 def __init__(self, anchor, tag, value, start_mark=None, end_mark=None,72 implicit=None, style=None):64 def __init__(self, anchor, tag, implicit, value, 65 start_mark=None, end_mark=None, style=None): 73 66 self.anchor = anchor 74 67 self.tag = tag 68 self.implicit = implicit 75 69 self.value = value 76 70 self.start_mark = start_mark 77 71 self.end_mark = end_mark 78 self.implicit = implicit79 72 self.style = style 80 73
Note: See TracChangeset
for help on using the changeset viewer.
