Changeset 118 for pyyaml/trunk/lib/yaml/composer.py
- Timestamp:
- 03/19/06 08:00:38 (7 years ago)
- File:
-
- 1 edited
-
pyyaml/trunk/lib/yaml/composer.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
pyyaml/trunk/lib/yaml/composer.py
r116 r118 16 16 self.complete_anchors = {} 17 17 18 # Drop the STREAM-START event. 19 self.parser.get() 20 18 21 def check(self): 19 22 # If there are more documents available? … … 31 34 32 35 def compose_document(self): 36 37 # Drop the DOCUMENT-START event. 38 self.parser.get() 39 40 # Compose the root node. 33 41 node = self.compose_node() 42 43 # Drop the DOCUMENT-END event. 44 self.parser.get() 45 34 46 self.all_anchors = {} 35 47 self.complete_anchors = {}
Note: See TracChangeset
for help on using the changeset viewer.
