Remove commented out grammar rule.
authorKim Grasman <kim.grasman@gmail.com>
Sun, 25 Aug 2013 18:38:40 +0000 (20:38 +0200)
committerKim Grasman <kim.grasman@gmail.com>
Sun, 25 Aug 2013 18:38:40 +0000 (20:38 +0200)
asn1ate/parser.py

index d00eb23..9c58c8c 100644 (file)
@@ -263,7 +263,7 @@ def _build_asn1_grammar():
 
     # these productions are used for custom parse actions,
     # because they typically generate similar code.
-    simple_type = (boolean_type | null_type | octetstring_type | characterstring_type | real_type | plain_integer_type | object_identifier_type) # + Optional(constraint)
+    simple_type = (boolean_type | null_type | octetstring_type | characterstring_type | real_type | plain_integer_type | object_identifier_type)
     value_list_type = restricted_integer_type | enumerated_type
 
     builtin_type = tagged_type | simple_type | choice_type | sequence_type | set_type | sequenceof_type | setof_type | value_list_type | bitstring_type