Changeset 331 for pyyaml/trunk/lib3/yaml/cyaml.py
- Timestamp:
- 12/29/08 18:21:43 (4 years ago)
- File:
-
- 1 copied
-
pyyaml/trunk/lib3/yaml/cyaml.py (copied) (copied from pyyaml/trunk/lib/yaml/cyaml.py) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
pyyaml/trunk/lib3/yaml/cyaml.py
r223 r331 5 5 from _yaml import CParser, CEmitter 6 6 7 from constructor import *7 from .constructor import * 8 8 9 from serializer import *10 from representer import *9 from .serializer import * 10 from .representer import * 11 11 12 from resolver import *12 from .resolver import * 13 13 14 14 class CBaseLoader(CParser, BaseConstructor, BaseResolver): … … 42 42 version=None, tags=None): 43 43 CEmitter.__init__(self, stream, canonical=canonical, 44 indent=indent, width=width, 44 indent=indent, width=width, encoding=encoding, 45 45 allow_unicode=allow_unicode, line_break=line_break, 46 46 explicit_start=explicit_start, explicit_end=explicit_end, … … 59 59 version=None, tags=None): 60 60 CEmitter.__init__(self, stream, canonical=canonical, 61 indent=indent, width=width, 61 indent=indent, width=width, encoding=encoding, 62 62 allow_unicode=allow_unicode, line_break=line_break, 63 63 explicit_start=explicit_start, explicit_end=explicit_end, … … 76 76 version=None, tags=None): 77 77 CEmitter.__init__(self, stream, canonical=canonical, 78 indent=indent, width=width, 78 indent=indent, width=width, encoding=encoding, 79 79 allow_unicode=allow_unicode, line_break=line_break, 80 80 explicit_start=explicit_start, explicit_end=explicit_end,
Note: See TracChangeset
for help on using the changeset viewer.
