162 (?P<VariableName> \w+ ) |
162 (?P<VariableName> \w+ ) |
163 [ \t]* = [ \t]* (?P<VariableSignal> (?:pyqtSignal)? ) |
163 [ \t]* = [ \t]* (?P<VariableSignal> (?:pyqtSignal)? ) |
164 ) |
164 ) |
165 |
165 |
166 | (?P<Import> |
166 | (?P<Import> |
167 ^ (?: import | from [ \t]+ \. [ \t]+ import ) [ \t]+ |
167 ^ [ \t]* (?: import | from [ \t]+ \. [ \t]+ import ) [ \t]+ |
168 (?P<ImportList> (?: [^#;\\\n]+ (?: \\\n )* )* ) |
168 (?P<ImportList> (?: [^#;\\\n]+ (?: \\\n )* )* ) |
169 ) |
169 ) |
170 |
170 |
171 | (?P<ImportFrom> |
171 | (?P<ImportFrom> |
172 ^ from [ \t]+ |
172 ^ [ \t]* from [ \t]+ |
173 (?P<ImportFromPath> |
173 (?P<ImportFromPath> |
174 \.* \w+ |
174 \.* \w+ |
175 (?: |
175 (?: |
176 [ \t]* \. [ \t]* \w+ |
176 [ \t]* \. [ \t]* \w+ |
177 )* |
177 )* |