DEBSOURCES
Skip Quicknav
sources / python-enable / 3.3.1-3 / enthought / savage / svg / css / atrule.py
123456
""" CSS at-rules""" from pyparsing import Literal, Combine from identifier import identifier atkeyword = Combine(Literal("@") + identifier)