Changeset 328 for pyyaml/trunk/lib3/yaml/serializer.py
- Timestamp:
- 12/29/08 12:24:05 (4 years ago)
- Location:
- pyyaml/trunk/lib3
- Files:
-
- 1 edited
- 1 copied
-
. (copied) (copied from pyyaml/trunk/lib)
-
yaml/serializer.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
pyyaml/trunk/lib3/yaml/serializer.py
r222 r328 2 2 __all__ = ['Serializer', 'SerializerError'] 3 3 4 from error import YAMLError5 from events import *6 from nodes import *4 from .error import YAMLError 5 from .events import * 6 from .nodes import * 7 7 8 8 class SerializerError(YAMLError): 9 9 pass 10 10 11 class Serializer (object):11 class Serializer: 12 12 13 ANCHOR_TEMPLATE = u'id%03d'13 ANCHOR_TEMPLATE = 'id%03d' 14 14 15 15 def __init__(self, encoding=None,
Note: See TracChangeset
for help on using the changeset viewer.
