Change from BUG to EXT for extensions to the spec
authorKim Grasman <kim.grasman@gmail.com>
Wed, 28 Aug 2013 13:00:20 +0000 (15:00 +0200)
committerKim Grasman <kim.grasman@gmail.com>
Wed, 28 Aug 2013 13:00:20 +0000 (15:00 +0200)
asn1ate/parser.py

index 1eb2163..70211a6 100644 (file)
@@ -270,12 +270,13 @@ def _build_asn1_grammar():
 
     type_ << (builtin_type | referenced_type)
 
-    # BUG: identifier should not be Optional here,
-    # but our ASN.1 interpreter supports unnamed members,
+    # EXT: identifier should not be Optional here, but
+    # our other ASN.1 code generator supports unnamed members,
     # and we use them.
     named_type << (Optional(identifier) + type_)
 
-    # BUG: Trailing semi-colon is not allowed by standard grammar, but our ASN.1 interpreter accepts it
+    # EXT: Trailing semi-colon is not allowed by standard
+    # grammar, but our other ASN.1 code generator accepts it
     # and we happen to use it.
     type_assignment = typereference + '::=' + type_ + Suppress(Optional(';'))
     value_assignment = valuereference + type_ + '::=' + value