File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -108,12 +108,12 @@ def SLiteral(x):
108
108
return Suppress (Literal (x ))
109
109
110
110
# Begin BLIF language definition
111
- signal_start = pyparsing .alphas + r '$:[]_<>\ \\/?'
112
- signal_middle = pyparsing .alphas + pyparsing .nums + r '$:[]_<>\ \\/.?-'
111
+ signal_start = pyparsing .alphas + '$:[]_<>\\ /?'
112
+ signal_middle = pyparsing .alphas + pyparsing .nums + '$:[]_<>\\ /.?-'
113
113
signal_id = Word (signal_start , signal_middle )
114
114
header = SKeyword ('.model' ) + signal_id ('model_name' )
115
- input_list = Group (SKeyword ('.inputs' ) + OneOrMore (signal_id ))('input_list' )
116
- output_list = Group (SKeyword ('.outputs' ) + OneOrMore (signal_id ))('output_list' )
115
+ input_list = Group (SKeyword ('.inputs' ) + ZeroOrMore (signal_id ))('input_list' )
116
+ output_list = Group (SKeyword ('.outputs' ) + ZeroOrMore (signal_id ))('output_list' )
117
117
118
118
cover_atom = Word ('01-' )
119
119
cover_list = Group (ZeroOrMore (cover_atom ))('cover_list' )
You can’t perform that action at this time.
0 commit comments