3

Y'ícã@spddlmZddlmZGdd„dƒZdd„Zdd„Zd	d
„Zdd„Ze	ƒe_
ddd„ZeZeZ
eZeZeZdS)é)ÚParseException)Úcolc@s(eZdZdZdd„Zdd„Zdd„ZdS)	ÚOnlyOncezI
    Wrapper for parse actions, to ensure they are only called once.
    cCs ddlm}||ƒ|_d|_dS)Nr)Ú_trim_arityF)ÚcorerÚcallableÚcalled)ÚselfZmethod_callr©r
ú6/tmp/pip-build-gk9425m9/pyparsing/pyparsing/actions.pyÚ__init__s
zOnlyOnce.__init__cCs.|js|j|||ƒ}d|_|St||dƒ‚dS)NTz.OnlyOnce obj called multiple times w/out reset)rrr)r	ÚsÚlÚtÚresultsr
r
rÚ__call__s
zOnlyOnce.__call__cCs
d|_dS)zK
        Allow the associated parse action to be called once more.
        FN)r)r	r
r
rÚresetszOnlyOnce.resetN)Ú__name__Ú
__module__Ú__qualname__Ú__doc__rrrr
r
r
rrsrcs‡fdd„}|S)zt
    Helper method for defining parse actions that require matching at
    a specific column in the input text.
    cs$t||ƒˆkr t||djˆƒƒ‚dS)Nzmatched token not at column {})rrÚformat)ÚstrgÚlocnÚtoks)Únr
rÚ
verify_col'sz%match_only_at_col.<locals>.verify_colr
)rrr
)rrÚmatch_only_at_col!srcs‡fdd„S)aÀ
    Helper method for common parse actions that simply return
    a literal value.  Especially useful when used with
    :class:`transform_string<ParserElement.transform_string>` ().

    Example::

        num = Word(nums).set_parse_action(lambda toks: int(toks[0]))
        na = one_of("N/A NA").set_parse_action(replace_with(math.nan))
        term = na | num

        term[1, ...].parse_string("324 234 N/A 234") # -> [324, 234, nan, 234]
    csˆgS)Nr
)r
rr)Úrepl_strr
rÚ<lambda><szreplace_with.<locals>.<lambda>r
)rr
)rrÚreplace_with.sr cCs|ddd…S)a#
    Helper parse action for removing quotation marks from parsed
    quoted strings.

    Example::

        # by default, quotation marks are included in parsed results
        quoted_string.parse_string("'Now is the Winter of our Discontent'") # -> ["'Now is the Winter of our Discontent'"]

        # use remove_quotes to strip quotation marks from parsed results
        quoted_string.set_parse_action(remove_quotes)
        quoted_string.parse_string("'Now is the Winter of our Discontent'") # -> ["Now is the Winter of our Discontent"]
    éréÿÿÿÿr
)r
rrr
r
rÚ
remove_quotes?sr#cs8|r|dd…‰n|jƒ‰dd„ˆDƒ‰‡fdd„}|S)aK
    Helper to create a validating parse action to be used with start
    tags created with :class:`make_xml_tags` or
    :class:`make_html_tags`. Use ``with_attribute`` to qualify
    a starting tag with a required attribute value, to avoid false
    matches on common tags such as ``<TD>`` or ``<DIV>``.

    Call ``with_attribute`` with a series of attribute names and
    values. Specify the list of filter attributes names and values as:

    - keyword arguments, as in ``(align="right")``, or
    - as an explicit dict with ``**`` operator, when an attribute
      name is also a Python reserved word, as in ``**{"class":"Customer", "align":"right"}``
    - a list of name-value tuples, as in ``(("ns1:class", "Customer"), ("ns2:align", "right"))``

    For attribute names with a namespace prefix, you must use the second
    form.  Attribute names are matched insensitive to upper/lower case.

    If just testing for ``class`` (with or without a namespace), use
    :class:`with_class`.

    To verify that the attribute exists, but without specifying a value,
    pass ``with_attribute.ANY_VALUE`` as the value.

    Example::

        html = '''
            <div>
            Some text
            <div type="grid">1 4 0 1 0</div>
            <div type="graph">1,3 2,3 1,1</div>
            <div>this has no type</div>
            </div>

        '''
        div,div_end = make_html_tags("div")

        # only match div tag having a type attribute with value "grid"
        div_grid = div().set_parse_action(with_attribute(type="grid"))
        grid_expr = div_grid + SkipTo(div | div_end)("body")
        for grid_header in grid_expr.search_string(html):
            print(grid_header.body)

        # construct a match with any div tag having a type attribute, regardless of the value
        div_any_type = div().set_parse_action(with_attribute(type=with_attribute.ANY_VALUE))
        div_expr = div_any_type + SkipTo(div | div_end)("body")
        for div_header in div_expr.search_string(html):
            print(div_header.body)

    prints::

        1 4 0 1 0

        1 4 0 1 0
        1,3 2,3 1,1
    NcSsg|]\}}||f‘qSr
r
)Ú.0ÚkÚvr
r
rú
<listcomp>sz"with_attribute.<locals>.<listcomp>cs^xXˆD]P\}}||kr&t||d|ƒ‚|tjkr|||krt||dj||||ƒƒ‚qWdS)Nzno matching attribute z+attribute {!r} has value {!r}, must be {!r})rÚwith_attributeÚ	ANY_VALUEr)r
rÚtokensÚattrNameÚ	attrValue)Úattrsr
rÚpaszwith_attribute.<locals>.pa)Úitems)ÚargsZ	attr_dictr.r
)r-rr(Ps9
r(ÚcCs |rdj|ƒnd}tf||iŽS)aÙ
    Simplified version of :class:`with_attribute` when
    matching on a div class - made difficult because ``class`` is
    a reserved word in Python.

    Example::

        html = '''
            <div>
            Some text
            <div class="grid">1 4 0 1 0</div>
            <div class="graph">1,3 2,3 1,1</div>
            <div>this &lt;div&gt; has no class</div>
            </div>

        '''
        div,div_end = make_html_tags("div")
        div_grid = div().set_parse_action(with_class("grid"))

        grid_expr = div_grid + SkipTo(div | div_end)("body")
        for grid_header in grid_expr.search_string(html):
            print(grid_header.body)

        div_any_type = div().set_parse_action(with_class(withAttribute.ANY_VALUE))
        div_expr = div_any_type + SkipTo(div | div_end)("body")
        for div_header in div_expr.search_string(html):
            print(div_header.body)

    prints::

        1 4 0 1 0

        1 4 0 1 0
        1,3 2,3 1,1
    z{}:classÚclass)rr()Ú	classnameÚ	namespaceÚ	classattrr
r
rÚ
with_class¢s$r6N)r1)Ú
exceptionsrÚutilrrrr r#r(Úobjectr)r6ÚreplaceWithÚremoveQuotesÚ
withAttributeÚ	withClassÚmatchOnlyAtColr
r
r
rÚ<module>s
O
)