Lines Matching full:words
262 words = string.split(sequence[1:-1], '-')
265 while words and words[0] in _modifier_names:
266 modifiers |= 1 << _modifier_names[words[0]]
267 del words[0]
269 if words and words[0] in _type_names:
270 type = _type_names[words[0]]
271 del words[0]
276 if modifiers or words:
287 if not words:
289 elif len(words) == 1 and type_re.match(words[0]):
290 detail = words[0]