Change from BUG to EXT for extensions to the spec.
authorKim Grasman <kim.grasman@gmail.com>
Sun, 25 Aug 2013 18:34:29 +0000 (20:34 +0200)
committerKim Grasman <kim.grasman@gmail.com>
Sun, 25 Aug 2013 18:34:29 +0000 (20:34 +0200)
asn1ate/parser.py

index 3ece685..d00eb23 100644 (file)
@@ -271,12 +271,12 @@ def _build_asn1_grammar():
 
     type_ << ((builtin_type | referenced_type) + Optional(constraint))
 
-    # BUG: identifier should not be Optional here,
+    # EXT: identifier should not be Optional here,
     # but our ASN.1 interpreter 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 ASN.1 interpreter accepts it
     # and we happen to use it.
     type_assignment = typereference + '::=' + type_ + Suppress(Optional(';'))
     value_assignment = valuereference + type_ + '::=' + value