Changeset 152 for pyyaml/trunk/lib/yaml/__init__.py
- Timestamp:
- 05/04/06 06:46:11 (7 years ago)
- File:
-
- 1 edited
-
pyyaml/trunk/lib/yaml/__init__.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
pyyaml/trunk/lib/yaml/__init__.py
r147 r152 135 135 136 136 def dump_all(documents, stream=None, Dumper=Dumper, 137 default_style=None, default_flow_style=None, 137 138 canonical=None, indent=None, width=None, 138 139 allow_unicode=None, line_break=None, … … 151 152 stream = StringIO() 152 153 getvalue = stream.getvalue 153 dumper = Dumper(stream, canonical=canonical, indent=indent, width=width, 154 dumper = Dumper(stream, default_style=default_style, 155 default_flow_style=default_flow_style, 156 canonical=canonical, indent=indent, width=width, 154 157 allow_unicode=allow_unicode, line_break=line_break, 155 158 encoding=encoding, version=version, tags=tags,
Note: See TracChangeset
for help on using the changeset viewer.
