Index: pyyaml/trunk/lib/yaml/events.py
===================================================================
--- pyyaml/trunk/lib/yaml/events.py	(revision 136)
+++ pyyaml/trunk/lib/yaml/events.py	(revision 137)
@@ -7,5 +7,5 @@
         self.end_mark = end_mark
     def __repr__(self):
-        attributes = [key for key in ['anchor', 'tag', 'value']
+        attributes = [key for key in ['anchor', 'tag', 'implicit', 'value']
                 if hasattr(self, key)]
         arguments = ', '.join(['%s=%r' % (key, getattr(self, key))
@@ -20,8 +20,9 @@
 
 class CollectionStartEvent(NodeEvent):
-    def __init__(self, anchor, tag, start_mark=None, end_mark=None,
+    def __init__(self, anchor, tag, implicit, start_mark=None, end_mark=None,
             flow_style=None):
         self.anchor = anchor
         self.tag = tag
+        self.implicit = implicit
         self.start_mark = start_mark
         self.end_mark = end_mark
