You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
for match in re.finditer("'(?P<property>[a-zA-Z-]+)'\\s+Value:\\s+(?P<values>.*?)Initial", css2, re.MULTILINE|re.DOTALL):
if match.group(1) != 'property-name':
print "(%s . [%s])" % (match.group(1), " ".join([ option.strip() for option in match.group(2).split("|") if not reject_re.search(option) and len(option) > 0 ]))