Hacked By AnonymousFox

Current Path : /proc/thread-self/root/proc/self/root/lib/python2.7/site-packages/setuptools/_vendor/
Upload File :
Current File : //proc/thread-self/root/proc/self/root/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyc

�
�fci@sdZdZdZdZddlZddlmZddlZddl	Z	ddl
Z
ddlZddlZddl
Z
ddlZddlZddlZddlmZyddlmZWn!ek
r�ddlmZnXydd	l
mZWn?ek
r=ydd	lmZWnek
r9eZnXnXd
ddd
ddddddddddddddddddd d!d"d#d$d%d&d'd(d)d*d+d,d-d.d/d0d1d2d3d4d5d6d7d8d9d:d;d<d=d>d?d@dAdBdCdDdEdFdGdHdIdJdKdLdMdNdOdPdQdRdSdTdUdVdWdXdYdZd[d\d]d^d_d`dadbdcdddedfdgdhdidjdkdldmdndodpdqdrgiZee	j�ds ZedtdskZer�e	jZ e!Z"e#Z$e!Z%e&e'e(e)e*ee+e,e-e.e/gZ0nre	j1Z e2Z3du�Z%gZ0ddl4Z4xEdvj5�D]7Z6ye0j7e8e4e6��Wne9k
rZq$nXq$We:dw�e3dx�D��Z;dy�Z<dze=fd{��YZ>ej?ej@ZAd|ZBeBd}ZCeAeBZDe#d~�ZEdjFd��ejGD��ZHd!eIfd���YZJd#eJfd���YZKd%eJfd���YZLd'eLfd���YZMd*eIfd���YZNd�e=fd���YZOd&e=fd���YZPe
jQjReP�d��ZSd��ZTd��ZUd��ZVd��ZWd��ZXd��ZYd�d��ZZd(e=fd���YZ[d0e[fd���YZ\de\fd���YZ]de\fd���YZ^de\fd���YZ_e_Z`e_e[_ade\fd���YZbde_fd���YZcdebfd���YZddpe\fd���YZed3e\fd���YZfd+e\fd���YZgd)e\fd���YZhd
e\fd���YZid2e\fd���YZjd�e\fd���YZkdekfd���YZldekfd���YZmdekfd���YZnd.ekfd���YZod-ekfd���YZpd5ekfd���YZqd4ekfd���YZrd$e[fd���YZsd
esfd���YZtd esfd���YZudesfd���YZvdesfd���YZwd"e[fd���YZxdexfd���YZydexfd���YZzd�exfd���YZ{de{fd���YZ|d6e{fd���YZ}d�e=fd���YZ~e~�Zdexfd���YZ�d,exfd���YZ�dexfd���YZ�d�e�fd���YZ�d1exfd���YZ�de�fd���YZ�de�fd���YZ�de�fd���YZ�d/e�fd���YZ�de=fd���YZ�d��Z�d�e�d��Z�ed��Z�d��Z�d��Z�d��Z�d��Z�e�e�d��Z�d��Z�e�d��Z�d��Z�d��Z�e]�j�dG�Z�em�j�dM�Z�en�j�dL�Z�eo�j�de�Z�ep�j�dd�Z�efeEd�d�d��j�d���Z�egd��j�d���Z�egd��j�d���Z�e�e�Be�BefeHd�d�d�dx�Begd�ej��BZ�e�e�e�d��e��Z�e_d��e�d��j�d��e�e|e�e�B��j�d��d�Z�d��Z�d��Z�d��Z�d��Z�d��Z�e�d���Z�e�d���Z�d��Z�d��Z�d��Z�d��Z�e=�e�_�dd��Z�e>�Z�e=�e�_�e=�e�_�e�d��e�d��d��Z�e�Z�e�egd��d��j�d��Z�e�egd��d��j�d��Z�e�egd��d�egd��d�B�j�d��Z�e�e`d��e�j��j�d��Z�d�d�ee�j�d��Z�e�d��Z�e�d��Z�e�d��Z�e�efeAeDd��j�d���\Z�Z�e�e�d�j5�d���Z�egd�djFe�j���d�j�d�Z�d�Z�e�egd�d�j�d�Z�egd�j�d�Z�egd	�j��j�d
�Z�egd�j�d�Z�e�egd�de�B�j�d
�Z�e�Z�egd�j�d�Z�e�e|efeHd�d��e�efd�e_d��en����j��j�d�Z�e�e�e�j�e�Bdd��j�d>�Z�drfd��YZ�e�dkrecd�Z�ecd�Z�efeAeDd�Z�e�e�dde��j�e��Z�e�e�e���j�d�Z�de�BZ�e�e�dde��j�e��Z�e�e�e���j�d�Z�e�d�e�d�e�e�d�Z�e�j�d�e�j�j�d�e�j�j�d�e�j�j�d �ddl�Z�e�j�j�e�e�j���e�j�j�d!�ndS("sS
pyparsing module - Classes and methods to define and execute parsing grammars

The pyparsing module is an alternative approach to creating and executing simple grammars,
vs. the traditional lex/yacc approach, or the use of regular expressions.  With pyparsing, you
don't need to learn a new syntax for defining grammars or matching expressions - the parsing module
provides a library of classes that you use to construct the grammar directly in Python.

Here is a program to parse "Hello, World!" (or any greeting of the form 
C{"<salutation>, <addressee>!"}), built up using L{Word}, L{Literal}, and L{And} elements 
(L{'+'<ParserElement.__add__>} operator gives L{And} expressions, strings are auto-converted to
L{Literal} expressions)::

    from pyparsing import Word, alphas

    # define grammar of a greeting
    greet = Word(alphas) + "," + Word(alphas) + "!"

    hello = "Hello, World!"
    print (hello, "->", greet.parseString(hello))

The program outputs the following::

    Hello, World! -> ['Hello', ',', 'World', '!']

The Python representation of the grammar is quite readable, owing to the self-explanatory
class names, and the use of '+', '|' and '^' operators.

The L{ParseResults} object returned from L{ParserElement.parseString<ParserElement.parseString>} can be accessed as a nested list, a dictionary, or an
object with named attributes.

The pyparsing module handles some of the problems that are typically vexing when writing text parsers:
 - extra or missing whitespace (the above program will also handle "Hello,World!", "Hello  ,  World  !", etc.)
 - quoted strings
 - embedded comments
s2.1.10s07 Oct 2016 01:31 UTCs*Paul McGuire <ptmcg@users.sourceforge.net>i����N(tref(tdatetime(tRLock(tOrderedDicttAndtCaselessKeywordtCaselessLiteralt
CharsNotIntCombinetDicttEachtEmptyt
FollowedBytForwardt
GoToColumntGrouptKeywordtLineEndt	LineStarttLiteralt
MatchFirsttNoMatchtNotAnyt	OneOrMoretOnlyOncetOptionaltOrtParseBaseExceptiontParseElementEnhancetParseExceptiontParseExpressiontParseFatalExceptiontParseResultstParseSyntaxExceptiont
ParserElementtQuotedStringtRecursiveGrammarExceptiontRegextSkipTot	StringEndtStringStarttSuppresstTokentTokenConvertertWhitetWordtWordEndt	WordStartt
ZeroOrMoret	alphanumstalphast
alphas8bittanyCloseTagt
anyOpenTagt
cStyleCommenttcoltcommaSeparatedListtcommonHTMLEntitytcountedArraytcppStyleCommenttdblQuotedStringtdblSlashCommentt
delimitedListtdictOftdowncaseTokenstemptythexnumsthtmlCommenttjavaStyleCommenttlinetlineEndt	lineStarttlinenotmakeHTMLTagstmakeXMLTagstmatchOnlyAtColtmatchPreviousExprtmatchPreviousLiteralt
nestedExprtnullDebugActiontnumstoneOftopAssoctoperatorPrecedencet
printablestpunc8bittpythonStyleCommenttquotedStringtremoveQuotestreplaceHTMLEntitytreplaceWitht
restOfLinetsglQuotedStringtsranget	stringEndtstringStartttraceParseActiont
unicodeStringtupcaseTokenst
withAttributet
indentedBlocktoriginalTextFortungroupt
infixNotationtlocatedExprt	withClasst
CloseMatchttokenMaptpyparsing_commoniicCs}t|t�r|Syt|�SWnUtk
rxt|�jtj�d�}td�}|jd��|j	|�SXdS(sDrop-in replacement for str(obj) that tries to be Unicode friendly. It first tries
           str(obj). If that fails with a UnicodeEncodeError, then it tries unicode(obj). It
           then < returns the unicode object | encodes it with the default encoding | ... >.
        txmlcharrefreplaces&#\d+;cSs#dtt|ddd!��dS(Ns\uiii����(thextint(tt((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt<lambda>�tN(
t
isinstancetunicodetstrtUnicodeEncodeErrortencodetsystgetdefaultencodingR%tsetParseActionttransformString(tobjtrett
xmlcharref((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt_ustr�s
s6sum len sorted reversed list tuple set any all min maxccs|]}|VqdS(N((t.0ty((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pys	<genexpr>�sicCsRd}d�dj�D�}x/t||�D]\}}|j||�}q,W|S(s/Escape &, <, >, ", ', etc. in a string of data.s&><"'css|]}d|dVqdS(t&t;N((R�ts((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pys	<genexpr>�ssamp gt lt quot apos(tsplittziptreplace(tdatatfrom_symbolst
to_symbolstfrom_tto_((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt_xml_escape�s
t
_ConstantscBseZRS((t__name__t
__module__(((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��st
0123456789tABCDEFabcdefi\Rrccs$|]}|tjkr|VqdS(N(tstringt
whitespace(R�tc((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pys	<genexpr>�scBs_eZdZdd
d
d�Zed��Zd�Zd�Zd�Z	dd�Z
d	�ZRS(s7base exception class for all parsing runtime exceptionsicCs[||_|dkr*||_d|_n||_||_||_|||f|_dS(NRr(tloctNonetmsgtpstrt
parserElementtargs(tselfR�R�R�telem((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt__init__�s					cCs||j|j|j|j�S(s�
        internal factory method to simplify creating one type of ParseException 
        from another - avoids having __init__ signature conflicts among subclasses
        (R�R�R�R�(tclstpe((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt_from_exception�scCsm|dkrt|j|j�S|dkr>t|j|j�S|dkr]t|j|j�St|��dS(s�supported attributes by name are:
            - lineno - returns the line number of the exception text
            - col - returns the column number of the exception text
            - line - returns the line containing the exception text
        RHR7tcolumnREN(R7R�(RHR�R�R7REtAttributeError(R�taname((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt__getattr__�scCs d|j|j|j|jfS(Ns"%s (at char %d), (line:%d, col:%d)(R�R�RHR�(R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt__str__�scCs
t|�S(N(R(R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt__repr__�ss>!<cCsI|j}|jd}|r?dj|| |||f�}n|j�S(s�Extracts the exception line from the input string, and marks
           the location of the exception with a special symbol.
        iRr(RER�tjointstrip(R�tmarkerStringtline_strtline_column((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt
markInputline�s	

cCsdj�tt|��S(Nslineno col line(R�tdirttype(R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt__dir__�sN(R�R�t__doc__R�R�tclassmethodR�R�R�R�R�R�(((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�s			
cBseZdZRS(sN
    Exception thrown when parse expressions don't match class;
    supported attributes by name are:
     - lineno - returns the line number of the exception text
     - col - returns the column number of the exception text
     - line - returns the line containing the exception text
        
    Example::
        try:
            Word(nums).setName("integer").parseString("ABC")
        except ParseException as pe:
            print(pe)
            print("column: {}".format(pe.col))
            
    prints::
       Expected integer (at char 0), (line:1, col:1)
        column: 1
    (R�R�R�(((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�scBseZdZRS(snuser-throwable exception thrown when inconsistent parse content
       is found; stops all parsing immediately(R�R�R�(((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRscBseZdZRS(s�just like L{ParseFatalException}, but thrown internally when an
       L{ErrorStop<And._ErrorStop>} ('-' operator) indicates that parsing is to stop 
       immediately because an unbacktrackable syntax error has been found(R�R�R�(((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR!scBs eZdZd�Zd�ZRS(sZexception thrown by L{ParserElement.validate} if the grammar could be improperly recursivecCs
||_dS(N(tparseElementTrace(R�tparseElementList((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�scCsd|jS(NsRecursiveGrammarException: %s(R�(R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR� s(R�R�R�R�R�(((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR$s	t_ParseResultsWithOffsetcBs,eZd�Zd�Zd�Zd�ZRS(cCs||f|_dS(N(ttup(R�tp1tp2((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�$scCs|j|S(N(R�(R�ti((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt__getitem__&scCst|jd�S(Ni(treprR�(R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�(scCs|jd|f|_dS(Ni(R�(R�R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt	setOffset*s(R�R�R�R�R�R�(((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�#s			cBs�eZdZd-d-eed�Zd-d-eeed�Zd�Zed�Z	d�Z
d�Zd�Zd�Z
e
Zd	�Zd
�Zd�Zd�Zd
�Zer�eZeZeZn-eZeZeZd�Zd�Zd�Zd�Zd�Zd-d�Zd�Zd�Zd�Z d�Z!d�Z"d�Z#d�Z$d�Z%d�Z&d�Z'dd�Z(d �Z)d!�Z*d"�Z+d-e,ded#�Z-d$�Z.d%�Z/dd&ed'�Z0d(�Z1d)�Z2d*�Z3d+�Z4d,�Z5RS(.sI
    Structured parse results, to provide multiple means of access to the parsed data:
       - as a list (C{len(results)})
       - by list index (C{results[0], results[1]}, etc.)
       - by attribute (C{results.<resultsName>} - see L{ParserElement.setResultsName})

    Example::
        integer = Word(nums)
        date_str = (integer.setResultsName("year") + '/' 
                        + integer.setResultsName("month") + '/' 
                        + integer.setResultsName("day"))
        # equivalent form:
        # date_str = integer("year") + '/' + integer("month") + '/' + integer("day")

        # parseString returns a ParseResults object
        result = date_str.parseString("1999/12/31")

        def test(s, fn=repr):
            print("%s -> %s" % (s, fn(eval(s))))
        test("list(result)")
        test("result[0]")
        test("result['month']")
        test("result.day")
        test("'month' in result")
        test("'minutes' in result")
        test("result.dump()", str)
    prints::
        list(result) -> ['1999', '/', '12', '/', '31']
        result[0] -> '1999'
        result['month'] -> '12'
        result.day -> '31'
        'month' in result -> True
        'minutes' in result -> False
        result.dump() -> ['1999', '/', '12', '/', '31']
        - day: 31
        - month: 12
        - year: 1999
    cCs/t||�r|Stj|�}t|_|S(N(Rstobjectt__new__tTruet_ParseResults__doinit(R�ttoklisttnametasListtmodaltretobj((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�Ts
	cCs�|jr�t|_d|_d|_i|_||_||_|dkrTg}n||t�rp||_	n-||t
�r�t|�|_	n|g|_	t�|_n|dk	r�|r�|s�d|j|<n||t
�r�t|�}n||_||td�ttf�o+|ddgfks�||t�rI|g}n|r�||t�rzt|j�d�||<ntt|d�d�||<|||_q�y|d||<Wq�tttfk
r�|||<q�Xq�ndS(NiRr(R�tFalseR�t_ParseResults__namet_ParseResults__parentt_ParseResults__accumNamest_ParseResults__asListt_ParseResults__modaltlistt_ParseResults__toklistt_generatorTypetdictt_ParseResults__tokdictRoRR�t
basestringR R�tcopytKeyErrort	TypeErrort
IndexError(R�R�R�R�R�Rs((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�]sB								
	3cCsnt|ttf�r |j|S||jkrB|j|ddStg|j|D]}|d^qS�SdS(Ni����i(RsRotsliceR�R�R�R (R�R�tv((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��s
cCs�||t�rB|jj|t��|g|j|<|d}n`||ttf�rm||j|<|}n5|jj|t��t|d�g|j|<|}||t�r�t|�|_	ndS(Ni(
R�R�tgetR�RoR�R�R twkrefR�(R�tkR�Rstsub((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt__setitem__�s&

	/c
Cst|ttf�rt|j�}|j|=t|t�rl|dkrV||7}nt||d�}ntt|j|���}|j�x{|j	j
�D]]\}}xN|D]F}x=t|�D]/\}\}}	t||	|	|k�||<q�Wq�Wq�Wn
|j	|=dS(Nii(
RsRoR�tlenR�R�trangetindicestreverseR�titemst	enumerateR�(
R�R�tmylentremovedR�toccurrencestjR�tvaluetposition((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt__delitem__�s



,cCs
||jkS(N(R�(R�R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt__contains__�scCs
t|j�S(N(R�R�(R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt__len__�RrcCs	|jS(N(R�(R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt__bool__�RrcCs
t|j�S(N(titerR�(R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt__iter__�RrcCst|jddd��S(Ni����(R�R�(R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt__reversed__�RrcCs0t|jd�r|jj�St|j�SdS(Ntiterkeys(thasattrR�R�R�(R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt	_iterkeys�s
cs�fd��j�D�S(Nc3s|]}�|VqdS(N((R�R�(R�(s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pys	<genexpr>�s(R�(R�((R�s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt_itervalues�scs�fd��j�D�S(Nc3s|]}|�|fVqdS(N((R�R�(R�(s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pys	<genexpr>�s(R�(R�((R�s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt
_iteritems�scCst|j��S(sVReturns all named result keys (as a list in Python 2.x, as an iterator in Python 3.x).(R�R�(R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pytkeys�scCst|j��S(sXReturns all named result values (as a list in Python 2.x, as an iterator in Python 3.x).(R�t
itervalues(R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pytvalues�scCst|j��S(sfReturns all named result key-values (as a list of tuples in Python 2.x, as an iterator in Python 3.x).(R�t	iteritems(R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��scCs
t|j�S(s�Since keys() returns an iterator, this method is helpful in bypassing
           code that looks for the existence of any defined results names.(tboolR�(R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pythaskeys�scOs�|sdg}nxI|j�D];\}}|dkrJ|d|f}qtd|��qWt|dt�s�t|�dks�|d|kr�|d}||}||=|S|d}|SdS(s�
        Removes and returns item at specified index (default=C{last}).
        Supports both C{list} and C{dict} semantics for C{pop()}. If passed no
        argument or an integer argument, it will use C{list} semantics
        and pop tokens from the list of parsed tokens. If passed a 
        non-integer argument (most likely a string), it will use C{dict}
        semantics and pop the corresponding value from any defined 
        results names. A second default return value argument is 
        supported, just as in C{dict.pop()}.

        Example::
            def remove_first(tokens):
                tokens.pop(0)
            print(OneOrMore(Word(nums)).parseString("0 123 321")) # -> ['0', '123', '321']
            print(OneOrMore(Word(nums)).addParseAction(remove_first).parseString("0 123 321")) # -> ['123', '321']

            label = Word(alphas)
            patt = label("LABEL") + OneOrMore(Word(nums))
            print(patt.parseString("AAB 123 321").dump())

            # Use pop() in a parse action to remove named result (note that corresponding value is not
            # removed from list form of results)
            def remove_LABEL(tokens):
                tokens.pop("LABEL")
                return tokens
            patt.addParseAction(remove_LABEL)
            print(patt.parseString("AAB 123 321").dump())
        prints::
            ['AAB', '123', '321']
            - LABEL: AAB

            ['AAB', '123', '321']
        i����tdefaultis-pop() got an unexpected keyword argument '%s'iN(R�R�RsRoR�(R�R�tkwargsR�R�tindexR}tdefaultvalue((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pytpop�s"


cCs||kr||S|SdS(si
        Returns named result matching the given key, or if there is no
        such name, then returns the given C{defaultValue} or C{None} if no
        C{defaultValue} is specified.

        Similar to C{dict.get()}.
        
        Example::
            integer = Word(nums)
            date_str = integer("year") + '/' + integer("month") + '/' + integer("day")           

            result = date_str.parseString("1999/12/31")
            print(result.get("year")) # -> '1999'
            print(result.get("hour", "not specified")) # -> 'not specified'
            print(result.get("hour")) # -> None
        N((R�tkeytdefaultValue((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�scCsw|jj||�x]|jj�D]L\}}x=t|�D]/\}\}}t||||k�||<q<Wq#WdS(s
        Inserts new element at location index in the list of parsed tokens.
        
        Similar to C{list.insert()}.

        Example::
            print(OneOrMore(Word(nums)).parseString("0 123 321")) # -> ['0', '123', '321']

            # use a parse action to insert the parse location in the front of the parsed results
            def insert_locn(locn, tokens):
                tokens.insert(0, locn)
            print(OneOrMore(Word(nums)).addParseAction(insert_locn).parseString("0 123 321")) # -> [0, '0', '123', '321']
        N(R�tinsertR�R�R�R�(R�R�tinsStrR�R�R�R�R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR2scCs|jj|�dS(s�
        Add single element to end of ParseResults list of elements.

        Example::
            print(OneOrMore(Word(nums)).parseString("0 123 321")) # -> ['0', '123', '321']
            
            # use a parse action to compute the sum of the parsed integers, and add it to the end
            def append_sum(tokens):
                tokens.append(sum(map(int, tokens)))
            print(OneOrMore(Word(nums)).addParseAction(append_sum).parseString("0 123 321")) # -> ['0', '123', '321', 444]
        N(R�tappend(R�titem((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRFscCs0t|t�r||7}n|jj|�dS(s
        Add sequence of elements to end of ParseResults list of elements.

        Example::
            patt = OneOrMore(Word(alphas))
            
            # use a parse action to append the reverse of the matched strings, to make a palindrome
            def make_palindrome(tokens):
                tokens.extend(reversed([t[::-1] for t in tokens]))
                return ''.join(tokens)
            print(patt.addParseAction(make_palindrome).parseString("lskdj sdlkjf lksd")) # -> 'lskdjsdlkjflksddsklfjkldsjdksl'
        N(RsR R�textend(R�titemseq((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRTs

cCs|j2|jj�dS(s7
        Clear all elements and results names.
        N(R�R�tclear(R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRfscCs�y||SWntk
r dSX||jkr}||jkrR|j|ddStg|j|D]}|d^qc�SndSdS(NRri����i(R�R�R�R (R�R�R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�ms
+cCs|j�}||7}|S(N(R�(R�totherR}((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt__add__{s
c	s�|jr�t|j���fd�}|jj�}g|D]<\}}|D])}|t|d||d��f^qMq=}xJ|D]?\}}|||<t|dt�r�t|�|d_q�q�Wn|j|j7_|j	j
|j	�|S(Ncs|dkr�S|�S(Ni((ta(toffset(s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRq�Rrii(R�R�R�R�R�RsR R�R�R�tupdate(R�R	t	addoffsett
otheritemsR�tvlistR�totherdictitems((Rs@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt__iadd__�s	F
cCs1t|t�r%|dkr%|j�S||SdS(Ni(RsRoR�(R�R	((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt__radd__�s
cCs dt|j�t|j�fS(Ns(%s, %s)(R�R�R�(R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��scCs"ddjd�|jD��dS(Nt[s, css6|],}t|t�r$t|�n	t|�VqdS(N(RsR RR�(R�R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pys	<genexpr>�st](R�R�(R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��sRrcCsog}xb|jD]W}|r2|r2|j|�nt|t�rT||j�7}q|jt|��qW|S(N(R�RRsR t
_asStringListR(R�tseptoutR((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�scCs5g|jD]'}t|t�r+|j�n|^q
S(s�
        Returns the parse results as a nested list of matching tokens, all converted to strings.

        Example::
            patt = OneOrMore(Word(alphas))
            result = patt.parseString("sldkj lsdkj sldkj")
            # even though the result prints in string-like form, it is actually a pyparsing ParseResults
            print(type(result), result) # -> <class 'pyparsing.ParseResults'> ['sldkj', 'lsdkj', 'sldkj']
            
            # Use asList() to create an actual list
            result_list = result.asList()
            print(type(result_list), result_list) # -> <class 'list'> ['sldkj', 'lsdkj', 'sldkj']
        (R�RsR R�(R�tres((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��scsGtr|j}n	|j}�fd��t�fd�|�D��S(s�
        Returns the named parse results as a nested dictionary.

        Example::
            integer = Word(nums)
            date_str = integer("year") + '/' + integer("month") + '/' + integer("day")
            
            result = date_str.parseString('12/31/1999')
            print(type(result), repr(result)) # -> <class 'pyparsing.ParseResults'> (['12', '/', '31', '/', '1999'], {'day': [('1999', 4)], 'year': [('12', 0)], 'month': [('31', 2)]})
            
            result_dict = result.asDict()
            print(type(result_dict), repr(result_dict)) # -> <class 'dict'> {'day': '1999', 'year': '12', 'month': '31'}

            # even though a ParseResults supports dict-like access, sometime you just need to have a dict
            import json
            print(json.dumps(result)) # -> Exception: TypeError: ... is not JSON serializable
            print(json.dumps(result.asDict())) # -> {"month": "31", "day": "1999", "year": "12"}
        csMt|t�rE|j�r%|j�Sg|D]}�|�^q,Sn|SdS(N(RsR R�tasDict(R|R�(ttoItem(s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�s

 c3s'|]\}}|�|�fVqdS(N((R�R�R�(R(s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pys	<genexpr>�s(tPY_3R�R�R�(R�titem_fn((Rs@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�s
		cCsPt|j�}|jj�|_|j|_|jj|j�|j|_|S(sA
        Returns a new copy of a C{ParseResults} object.
        (R R�R�R�R�R�R
R�(R�R}((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��scCs�d}g}td�|jj�D��}|d}|sPd}d}d}nd	}	|d	k	rk|}	n|jr�|j}	n|	s�|r�dSd}	n|||d|	dg7}x	t|j�D]�\}
}t|t�rI|
|kr||j	||
|o|d	k||�g7}q�||j	d	|o6|d	k||�g7}q�d	}|
|krh||
}n|s�|rzq�q�d}nt
t|��}
|||d|d|
d|dg	7}q�W|||d|	dg7}dj|�S(
s�
        (Deprecated) Returns the parse results as XML. Tags are created for tokens and lists that have defined results names.
        s
css2|](\}}|D]}|d|fVqqdS(iN((R�R�RR�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pys	<genexpr>�s	s  RrtITEMt<t>s</N(
R�R�R�R�R�R�R�RsR tasXMLR�RR�(R�tdoctagtnamedItemsOnlytindentt	formattedtnlRt
namedItemstnextLevelIndenttselfTagR�RtresTagtxmlBodyText((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR!�sT
				
	cCsKxD|jj�D]3\}}x$|D]\}}||kr#|Sq#WqWdS(N(R�R�R�(R�R�R�RR�R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt__lookup$s
cCs�|jr|jS|jr?|j�}|r8|j|�SdSnmt|�dkr�t|j�dkr�tt|jj���dddkr�tt|jj	���SdSdS(s(
        Returns the results name for this token expression. Useful when several 
        different expressions might match at a particular location.

        Example::
            integer = Word(nums)
            ssn_expr = Regex(r"\d\d\d-\d\d-\d\d\d\d")
            house_number_expr = Suppress('#') + Word(nums, alphanums)
            user_data = (Group(house_number_expr)("house_number") 
                        | Group(ssn_expr)("ssn")
                        | Group(integer)("age"))
            user_info = OneOrMore(user_data)
            
            result = user_info.parseString("22 111-22-3333 #221B")
            for item in result:
                print(item.getName(), ':', item[0])
        prints::
            age : 22
            ssn : 111-22-3333
            house_number : 221B
        iii����N(ii����(
R�R�t_ParseResults__lookupR�R�R�tnextR�R�R�(R�tpar((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pytgetName+s		
)icCs�g}d}|j|t|j���|r�|j�rtd�|j�D��}xk|D]�\}}|r�|j|�n|jd|d||f�t|t�r�|r�|j|j||d��q�|jt|��q^|jt	|��q^Wq�t
d�|D��r�|}x�t|�D]�\}	}
t|
t�r�|jd|d||	|d|d|
j||d�f�q,|jd|d||	|d|dt|
�f�q,Wq�ndj|�S(	sH
        Diagnostic method for listing out the contents of a C{ParseResults}.
        Accepts an optional C{indent} argument so that this string can be embedded
        in a nested display of other data.

        Example::
            integer = Word(nums)
            date_str = integer("year") + '/' + integer("month") + '/' + integer("day")
            
            result = date_str.parseString('12/31/1999')
            print(result.dump())
        prints::
            ['12', '/', '31', '/', '1999']
            - day: 1999
            - month: 31
            - year: 12
        s
css'|]\}}t|�|fVqdS(N(Ru(R�R�R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pys	<genexpr>gss
%s%s- %s: s  icss|]}t|t�VqdS(N(RsR (R�tvv((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pys	<genexpr>sss
%s%s[%d]:
%s%s%sRr(
RRR�R�tsortedR�RsR tdumpR�tanyR�R�(R�R$tdepthtfullRtNLR�R�R�R�R1((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR3Ps, B?cOstj|j�||�dS(s�
        Pretty-printer for parsed results as a list, using the C{pprint} module.
        Accepts additional positional or keyword args as defined for the 
        C{pprint.pprint} method. (U{http://docs.python.org/3/library/pprint.html#pprint.pprint})

        Example::
            ident = Word(alphas, alphanums)
            num = Word(nums)
            func = Forward()
            term = ident | num | Group('(' + func + ')')
            func <<= ident + Group(Optional(delimitedList(term)))
            result = func.parseString("fna a,b,(fnb c,d,200),100")
            result.pprint(width=40)
        prints::
            ['fna',
             ['a',
              'b',
              ['(', 'fnb', ['c', 'd', '200'], ')'],
              '100']]
        N(tpprintR�(R�R�R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR8}scCsC|j|jj�|jdk	r-|j�p0d|j|jffS(N(R�R�R�R�R�R�R�(R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt__getstate__�s
cCsm|d|_|d\|_}}|_i|_|jj|�|dk	r`t|�|_n	d|_dS(Nii(R�R�R�R�R
R�R�R�(R�tstateR/tinAccumNames((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt__setstate__�s
	cCs|j|j|j|jfS(N(R�R�R�R�(R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt__getnewargs__�scCs tt|��t|j��S(N(R�R�R�R�(R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��sN(6R�R�R�R�R�R�RsR�R�R�R�R�R�R�t__nonzero__R�R�R�R�R�RR�R�R�R�R�R�R�R�R�RRRRR�R
RRR�R�RR�RR�R�R!R-R0R3R8R9R<R=R�(((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR -sh&	'		
														4												#	=		%-			
	cCsW|}d|ko#t|�knr@||ddkr@dS||jdd|�S(sReturns current column within a string, counting newlines as line separators.
   The first column is number 1.

   Note: the default parsing behavior is to expand tabs in the input string
   before starting the parsing process.  See L{I{ParserElement.parseString}<ParserElement.parseString>} for more information
   on parsing strings containing C{<TAB>}s, and suggested methods to maintain a
   consistent view of the parsed string, the parse location, and line and column
   positions within the parsed string.
   iis
(R�trfind(R�tstrgR�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR7�s
cCs|jdd|�dS(sReturns current line number within a string, counting newlines as line separators.
   The first line is number 1.

   Note: the default parsing behavior is to expand tabs in the input string
   before starting the parsing process.  See L{I{ParserElement.parseString}<ParserElement.parseString>} for more information
   on parsing strings containing C{<TAB>}s, and suggested methods to maintain a
   consistent view of the parsed string, the parse location, and line and column
   positions within the parsed string.
   s
ii(tcount(R�R@((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRH�s
cCsR|jdd|�}|jd|�}|dkrB||d|!S||dSdS(sfReturns the line of text containing loc within a string, counting newlines as line separators.
       s
iiN(R?tfind(R�R@tlastCRtnextCR((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRE�s
cCsAdt|�dt|�dt||�t||�fGHdS(NsMatch s at loc s(%d,%d)(RRHR7(tinstringR�texpr((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt_defaultStartDebugAction�scCs'dt|�dt|j��GHdS(NsMatched s -> (RRuR�(REtstartloctendlocRFttoks((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt_defaultSuccessDebugAction�scCsdt|�GHdS(NsException raised:(R(RER�RFtexc((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt_defaultExceptionDebugAction�scGsdS(sG'Do-nothing' debug action, to suppress debugging output during parsing.N((R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRO�sics�tkr�fd�Sdg�tg�td dkrVdd�}dd��ntj}tj�d}|d	d�d
}|d|d|f�������fd�}d
}y"t�dt�d�j�}Wntk
r�t	��}nX||_|S(Ncs
�|�S(N((R�tlRp(tfunc(s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRq�RriiiicSsJtdkrdnd}tjd||d�|}|j|jfgS(	Niiii����i����tlimiti(iii(tsystem_versiont	tracebackt
extract_stacktfilenameRH(RPRt
frame_summary((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRSscSs2tj|d|�}|d}|j|jfgS(NRPi����(RRt
extract_tbRTRH(ttbRPtframesRU((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRVs
iRPi����ics�x�y&�|�d�}t�d<|SWqtk
r��drI�nAz:tj�d}�|dd�dd �ks��nWd~X�d�kr��dcd7<qn�qXqWdS(Nii����RPii(R�R�Rxtexc_info(R�R}RW(RVt
foundArityRORPtmaxargstpa_call_line_synth(s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pytwrappers"


 
s<parse action>R�t	__class__(ii(
tsingleArgBuiltinsR�RQRRRSRVtgetattrR�t	ExceptionRu(ROR[RSt	LINE_DIFFt	this_lineR]t	func_name((RVRZRORPR[R\s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt_trim_arity�s*
					
	cBseZdZdZeZed��Zed��Zed�Z	d�Z
d�Zed�Ze
d�Zd	�Zd
�Zd�Zd�Zd
�Zd�Ze
d�Zd�Ze
e
d�Zd�Zd�Zdefd��YZedFk	rdefd��YZndefd��YZiZe �Z!ddgZ"e
e
d�Z#eZ$ed��Z%eZ&edd��Z'ed�Z(e)ed�Z*d �Z+e)d!�Z,e)ed"�Z-d#�Z.d$�Z/d%�Z0d&�Z1d'�Z2d(�Z3d)�Z4d*�Z5d+�Z6d,�Z7d-�Z8d.�Z9d/�Z:dFd0�Z;d1�Z<d2�Z=d3�Z>d4�Z?d5�Z@d6�ZAe
d7�ZBd8�ZCd9�ZDd:�ZEd;�ZFgd<�ZGed=�ZHd>�ZId?�ZJd@�ZKdA�ZLdB�ZMe
dC�ZNe
dDe
e
edE�ZORS(Gs)Abstract base level parser element class.s 
	
cCs
|t_dS(s�
        Overrides the default whitespace chars

        Example::
            # default whitespace chars are space, <TAB> and newline
            OneOrMore(Word(alphas)).parseString("abc def\nghi jkl")  # -> ['abc', 'def', 'ghi', 'jkl']
            
            # change to just treat newline as significant
            ParserElement.setDefaultWhitespaceChars(" \t")
            OneOrMore(Word(alphas)).parseString("abc def\nghi jkl")  # -> ['abc', 'def']
        N(R"tDEFAULT_WHITE_CHARS(tchars((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pytsetDefaultWhitespaceChars=s
cCs
|t_dS(s�
        Set class to be used for inclusion of string literals into a parser.
        
        Example::
            # default literal class used is Literal
            integer = Word(nums)
            date_str = integer("year") + '/' + integer("month") + '/' + integer("day")           

            date_str.parseString("1999/12/31")  # -> ['1999', '/', '12', '/', '31']


            # change to Suppress
            ParserElement.inlineLiteralsUsing(Suppress)
            date_str = integer("year") + '/' + integer("month") + '/' + integer("day")           

            date_str.parseString("1999/12/31")  # -> ['1999', '12', '31']
        N(R"t_literalStringClass(R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pytinlineLiteralsUsingLscCs�t�|_d|_d|_d|_||_t|_t	j
|_t|_t
|_t
|_t�|_t
|_t
|_t|_d|_t|_d|_d|_t|_t
|_dS(NRr(NNN(R�tparseActionR�t
failActiontstrReprtresultsNamet
saveAsListR�tskipWhitespaceR"Rft
whiteCharstcopyDefaultWhiteCharsR�tmayReturnEmptytkeepTabstignoreExprstdebugtstreamlinedt
mayIndexErrorterrmsgtmodalResultstdebugActionstretcallPreparset
callDuringTry(R�tsavelist((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�as(																cCsEtj|�}|j|_|j|_|jrAtj|_n|S(s$
        Make a copy of this C{ParserElement}.  Useful for defining different parse actions
        for the same parsing pattern, using copies of the original parse element.
        
        Example::
            integer = Word(nums).setParseAction(lambda toks: int(toks[0]))
            integerK = integer.copy().addParseAction(lambda toks: toks[0]*1024) + Suppress("K")
            integerM = integer.copy().addParseAction(lambda toks: toks[0]*1024*1024) + Suppress("M")
            
            print(OneOrMore(integerK | integerM | integer).parseString("5K 100 640K 256M"))
        prints::
            [5120, 100, 655360, 268435456]
        Equivalent form of C{expr.copy()} is just C{expr()}::
            integerM = integer().addParseAction(lambda toks: toks[0]*1024*1024) + Suppress("M")
        (R�RkRuRrR"RfRq(R�tcpy((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�xs

	cCs>||_d|j|_t|d�r:|j|j_n|S(sf
        Define name for this expression, makes debugging and exception messages clearer.
        
        Example::
            Word(nums).parseString("ABC")  # -> Exception: Expected W:(0123...) (at char 0), (line:1, col:1)
            Word(nums).setName("integer").parseString("ABC")  # -> Exception: Expected integer (at char 0), (line:1, col:1)
        s	Expected t	exception(R�RyR�R�R�(R�R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pytsetName�s
	cCsE|j�}|jd�r.|d }t}n||_||_|S(sP
        Define name for referencing matching tokens as a nested attribute
        of the returned parse results.
        NOTE: this returns a *copy* of the original C{ParserElement} object;
        this is so that the client can define a basic element, such as an
        integer, and reference it in multiple places with different names.

        You can also set results names using the abbreviated syntax,
        C{expr("name")} in place of C{expr.setResultsName("name")} - 
        see L{I{__call__}<__call__>}.

        Example::
            date_str = (integer.setResultsName("year") + '/' 
                        + integer.setResultsName("month") + '/' 
                        + integer.setResultsName("day"))

            # equivalent form:
            date_str = integer("year") + '/' + integer("month") + '/' + integer("day")
        t*i����(R�tendswithR�RnRz(R�R�tlistAllMatchestnewself((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pytsetResultsName�s
		
csa|r9|j�tt�fd�}�|_||_n$t|jd�r]|jj|_n|S(s�Method to invoke the Python pdb debugger when this element is
           about to be parsed. Set C{breakFlag} to True to enable, False to
           disable.
        cs)ddl}|j��||||�S(Ni����(tpdbt	set_trace(RER�t	doActionstcallPreParseR�(t_parseMethod(s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pytbreaker�s
t_originalParseMethod(t_parseR�R�R�(R�t	breakFlagR�((R�s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pytsetBreak�s		cOs7tttt|���|_|jdt�|_|S(s
        Define action to perform when successfully matching parse element definition.
        Parse action fn is a callable method with 0-3 arguments, called as C{fn(s,loc,toks)},
        C{fn(loc,toks)}, C{fn(toks)}, or just C{fn()}, where:
         - s   = the original string being parsed (see note below)
         - loc = the location of the matching substring
         - toks = a list of the matched tokens, packaged as a C{L{ParseResults}} object
        If the functions in fns modify the tokens, they can return them as the return
        value from fn, and the modified list of tokens will replace the original.
        Otherwise, fn does not need to return any value.

        Optional keyword arguments:
         - callDuringTry = (default=C{False}) indicate if parse action should be run during lookaheads and alternate testing

        Note: the default parsing behavior is to expand tabs in the input string
        before starting the parsing process.  See L{I{parseString}<parseString>} for more information
        on parsing strings containing C{<TAB>}s, and suggested methods to maintain a
        consistent view of the parsed string, the parse location, and line and column
        positions within the parsed string.
        
        Example::
            integer = Word(nums)
            date_str = integer + '/' + integer + '/' + integer

            date_str.parseString("1999/12/31")  # -> ['1999', '/', '12', '/', '31']

            # use parse action to convert to ints at parse time
            integer = Word(nums).setParseAction(lambda toks: int(toks[0]))
            date_str = integer + '/' + integer + '/' + integer

            # note that integer fields are now ints, not strings
            date_str.parseString("1999/12/31")  # -> [1999, '/', 12, '/', 31]
        R~(R�tmapReRkR�R�R~(R�tfnsR�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRz�s"cOsF|jtttt|���7_|jp<|jdt�|_|S(s�
        Add parse action to expression's list of parse actions. See L{I{setParseAction}<setParseAction>}.
        
        See examples in L{I{copy}<copy>}.
        R~(RkR�R�ReR~R�R�(R�R�R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pytaddParseAction�s$cs�|jdd��|jdt�r*tnt�x3|D]+����fd�}|jj|�q7W|jp~|jdt�|_|S(s�Add a boolean predicate function to expression's list of parse actions. See 
        L{I{setParseAction}<setParseAction>} for function call signatures. Unlike C{setParseAction}, 
        functions passed to C{addCondition} need to return boolean success/fail of the condition.

        Optional keyword arguments:
         - message = define a custom message to be used in the raised exception
         - fatal   = if True, will raise ParseFatalException to stop parsing immediately; otherwise will raise ParseException
         
        Example::
            integer = Word(nums).setParseAction(lambda toks: int(toks[0]))
            year_int = integer.copy()
            year_int.addCondition(lambda toks: toks[0] >= 2000, message="Only support years 2000 and later")
            date_str = year_int + '/' + integer + '/' + integer

            result = date_str.parseString("1999/12/31")  # -> Exception: Only support years 2000 and later (at char 0), (line:1, col:1)
        tmessagesfailed user-defined conditiontfatalcs7tt��|||��s3�||���ndS(N(R�Re(R�RNRp(texc_typetfnR�(s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pytpasR~(R�R�RRRkRR~(R�R�R�R�((R�R�R�s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pytaddCondition�s
cCs
||_|S(sDefine action to perform if parsing fails at this expression.
           Fail acton fn is a callable function that takes the arguments
           C{fn(s,loc,expr,err)} where:
            - s = string being parsed
            - loc = location where expression match was attempted and failed
            - expr = the parse expression that failed
            - err = the exception thrown
           The function returns no value.  It may throw C{L{ParseFatalException}}
           if it is desired to stop parsing immediately.(Rl(R�R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt
setFailActions
	cCsnt}xa|rit}xN|jD]C}y)x"|j||�\}}t}q+WWqtk
raqXqWq	W|S(N(R�R�RuR�R(R�RER�t
exprsFoundtetdummy((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt_skipIgnorables#s	
cCsp|jr|j||�}n|jrl|j}t|�}x-||krh|||krh|d7}q?Wn|S(Ni(RuR�RpRqR�(R�RER�twttinstrlen((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pytpreParse0s			cCs
|gfS(N((R�RER�R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt	parseImpl<scCs|S(N((R�RER�t	tokenlist((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt	postParse?sc	Cs�|j}|s|jr,|jdr?|jd|||�n|rc|jrc|j||�}n|}|}yUy|j|||�\}}Wn/tk
r�t|t|�|j	|��nXWq�t
k
r(}	|jdr|jd||||	�n|jr"|j||||	�n�q�Xn�|rP|jrP|j||�}n|}|}|jsw|t|�kr�y|j|||�\}}Wq�tk
r�t|t|�|j	|��q�Xn|j|||�\}}|j|||�}t
||jd|jd|j�}
|jrf|s7|jrf|r�yrxk|jD]`}||||
�}|dk	rJt
||jd|jo�t|t
tf�d|j�}
qJqJWWqct
k
r�}	|jdr�|jd||||	�n�qcXqfxn|jD]`}||||
�}|dk	r�t
||jd|joMt|t
tf�d|j�}
q�q�Wn|r�|jdr�|jd|||||
�q�n||
fS(NiiR�R�i(RvRlR{R}R�R�R�RR�RyRRxR�R RnRoRzRkR~R�RsR�(R�RER�R�R�t	debuggingtprelocttokensStartttokensterrt	retTokensR�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt
_parseNoCacheCsp	

&
	

%$	

	
#cCsNy|j||dt�dSWn)tk
rIt|||j|��nXdS(NR�i(R�R�RRRy(R�RER�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyttryParse�s
cCs7y|j||�Wnttfk
r.tSXtSdS(N(R�RR�R�R�(R�RER�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pytcanParseNext�s
t_UnboundedCachecBseZd�ZRS(cs�i�t�|_���fd�}�fd�}�fd�}tj||�|_tj||�|_tj||�|_dS(Ncs�j|��S(N(R�(R�R(tcachetnot_in_cache(s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��scs|�|<dS(N((R�RR�(R�(s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pytset�scs�j�dS(N(R(R�(R�(s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�s(R�R�ttypest
MethodTypeR�R�R(R�R�R�R((R�R�s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��s(R�R�R�(((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��st
_FifoCachecBseZd�ZRS(cs�t�|_�t����fd�}��fd�}�fd�}tj||�|_tj||�|_tj||�|_dS(Ncs�j|��S(N(R�(R�R(R�R�(s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��scs0|�|<t���kr,�jt�ndS(N(R�tpopitemR�(R�RR�(R�tsize(s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��s
cs�j�dS(N(R(R�(R�(s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�s(R�R�t_OrderedDictR�R�R�R�R(R�R�R�R�R((R�R�R�s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��s	(R�R�R�(((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��scBseZd�ZRS(cs�t�|_�i�tjg�����fd�}���fd�}��fd�}tj||�|_tj||�|_tj||�|_dS(Ncs�j|��S(N(R�(R�R(R�R�(s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��scsF|�|<t���kr5�j�j�d�n�j|�dS(N(R�R�tpopleftR�R(R�RR�(R�tkey_fifoR�(s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��s
cs�j��j�dS(N(R(R�(R�R�(s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�s
(	R�R�tcollectionstdequeR�R�R�R�R(R�R�R�R�R((R�R�R�R�s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��s(R�R�R�(((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��sic	Cs.d\}}|||||f}tj��tj}|j|�}	|	|jkr�tj|cd7<y|j||||�}	Wn2tk
r�}
|j||
j	|
j
���q$X|j||	d|	dj�f�|	SnCtj|cd7<t|	t
�r|	�n|	d|	dj�fSWdQXdS(Nii(ii(R"tpackrat_cache_lockt
packrat_cacheR�R�tpackrat_cache_statsR�RR�R^R�R�RsRa(R�RER�R�R�tHITtMISStlookupR�R�R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt_parseCache�s$
	$	cCs+tjj�dgttj�tj(dS(Ni(R"R�RR�R�(((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt
resetCache�s
i�cCsUtjsQtt_|dkr0tj�t_ntj|�t_tjt_ndS(s�Enables "packrat" parsing, which adds memoizing to the parsing logic.
           Repeated parse attempts at the same string location (which happens
           often in many complex grammars) can immediately return a cached value,
           instead of re-executing parsing/validating code.  Memoizing is done of
           both valid results and parsing exceptions.
           
           Parameters:
            - cache_size_limit - (default=C{128}) - if an integer value is provided
              will limit the size of the packrat cache; if None is passed, then
              the cache size will be unbounded; if 0 is passed, the cache will
              be effectively disabled.
            
           This speedup may break existing programs that use parse actions that
           have side-effects.  For this reason, packrat parsing is disabled when
           you first import pyparsing.  To activate the packrat feature, your
           program must call the class method C{ParserElement.enablePackrat()}.  If
           your program uses C{psyco} to "compile as you go", you must call
           C{enablePackrat} before calling C{psyco.full()}.  If you do not do this,
           Python will crash.  For best results, call C{enablePackrat()} immediately
           after importing pyparsing.
           
           Example::
               import pyparsing
               pyparsing.ParserElement.enablePackrat()
        N(	R"t_packratEnabledR�R�R�R�R�R�R�(tcache_size_limit((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt
enablePackrats		cCs�tj�|js |j�nx|jD]}|j�q*W|jsV|j�}nyW|j|d�\}}|r�|j||�}t	�t
�}|j||�nWn(tk
r�}tjr��q�|�nX|SdS(sB
        Execute the parse expression with the given string.
        This is the main interface to the client code, once the complete
        expression has been built.

        If you want the grammar to require that the entire input string be
        successfully parsed, then set C{parseAll} to True (equivalent to ending
        the grammar with C{L{StringEnd()}}).

        Note: C{parseString} implicitly calls C{expandtabs()} on the input string,
        in order to report proper column numbers in parse actions.
        If the input string contains tabs and
        the grammar uses parse actions that use the C{loc} argument to index into the
        string being parsed, you can ensure you have a consistent view of the input
        string by:
         - calling C{parseWithTabs} on your grammar before calling C{parseString}
           (see L{I{parseWithTabs}<parseWithTabs>})
         - define your parse action using the full C{(s,loc,toks)} signature, and
           reference the input string using the parse action's C{s} argument
         - explictly expand the tabs in your input string before calling
           C{parseString}
        
        Example::
            Word('a').parseString('aaaaabaaa')  # -> ['aaaaa']
            Word('a').parseString('aaaaabaaa', parseAll=True)  # -> Exception: Expected end of text
        iN(
R"R�Rwt
streamlineRuRtt
expandtabsR�R�RR'Rtverbose_stacktrace(R�REtparseAllR�R�R�tseRL((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pytparseString#s$
	
		
ccs�|js|j�nx|jD]}|j�q W|jsRt|�j�}nt|�}d}|j}|j}t	j
�d}	y�x�||kra|	|kray.|||�}
|||
dt�\}}Wntk
r�|
d}q�X||krT|	d7}	||
|fV|rK|||�}
|
|kr>|}qQ|d7}q^|}q�|
d}q�WWn(t
k
r�}t	jr��q�|�nXdS(s�
        Scan the input string for expression matches.  Each match will return the
        matching tokens, start location, and end location.  May be called with optional
        C{maxMatches} argument, to clip scanning after 'n' matches are found.  If
        C{overlap} is specified, then overlapping matches will be reported.

        Note that the start and end locations are reported relative to the string
        being parsed.  See L{I{parseString}<parseString>} for more information on parsing
        strings with embedded tabs.

        Example::
            source = "sldjf123lsdjjkf345sldkjf879lkjsfd987"
            print(source)
            for tokens,start,end in Word(alphas).scanString(source):
                print(' '*start + '^'*(end-start))
                print(' '*start + tokens[0])
        
        prints::
        
            sldjf123lsdjjkf345sldkjf879lkjsfd987
            ^^^^^
            sldjf
                    ^^^^^^^
                    lsdjjkf
                              ^^^^^^
                              sldkjf
                                       ^^^^^^
                                       lkjsfd
        iR�iN(RwR�RuRtRR�R�R�R�R"R�R�RRR�(R�REt
maxMatchestoverlapR�R�R�t
preparseFntparseFntmatchesR�tnextLocR�tnextlocRL((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt
scanStringUsB	
			


	
		c	Cs%g}d}t|_y�x�|j|�D]}\}}}|j|||!�|r�t|t�rs||j�7}q�t|t�r�||7}q�|j|�n|}q(W|j||�g|D]}|r�|^q�}djt	t
t|���SWn(tk
r }t
jr�q!|�nXdS(sf
        Extension to C{L{scanString}}, to modify matching text with modified tokens that may
        be returned from a parse action.  To use C{transformString}, define a grammar and
        attach a parse action to it that modifies the returned token list.
        Invoking C{transformString()} on a target string will then scan for matches,
        and replace the matched text patterns according to the logic in the parse
        action.  C{transformString()} returns the resulting transformed string.
        
        Example::
            wd = Word(alphas)
            wd.setParseAction(lambda toks: toks[0].title())
            
            print(wd.transformString("now is the winter of our discontent made glorious summer by this sun of york."))
        Prints::
            Now Is The Winter Of Our Discontent Made Glorious Summer By This Sun Of York.
        iRrN(R�RtR�RRsR R�R�R�R�Rt_flattenRR"R�(	R�RERtlastERpR�R�toRL((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR{�s(	

 	cCsey6tg|j||�D]\}}}|^q�SWn(tk
r`}tjrW�qa|�nXdS(s~
        Another extension to C{L{scanString}}, simplifying the access to the tokens found
        to match the given parse expression.  May be called with optional
        C{maxMatches} argument, to clip searching after 'n' matches are found.
        
        Example::
            # a capitalized word starts with an uppercase letter, followed by zero or more lowercase letters
            cap_word = Word(alphas.upper(), alphas.lower())
            
            print(cap_word.searchString("More than Iron, more than Lead, more than Gold I need Electricity"))
        prints::
            ['More', 'Iron', 'Lead', 'Gold', 'I']
        N(R R�RR"R�(R�RER�RpR�R�RL((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pytsearchString�s6	c	csfd}d}xJ|j|d|�D]3\}}}|||!V|rO|dVn|}q"W||VdS(s[
        Generator method to split a string using the given expression as a separator.
        May be called with optional C{maxsplit} argument, to limit the number of splits;
        and the optional C{includeSeparators} argument (default=C{False}), if the separating
        matching text should be included in the split results.
        
        Example::        
            punc = oneOf(list(".,;:/-!?"))
            print(list(punc.split("This, this?, this sentence, is badly punctuated!")))
        prints::
            ['This', ' this', '', ' this sentence', ' is badly punctuated', '']
        iR�N(R�(	R�REtmaxsplittincludeSeparatorstsplitstlastRpR�R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��s
%
cCsdt|t�r!tj|�}nt|t�sTtjdt|�tdd�dSt	||g�S(s�
        Implementation of + operator - returns C{L{And}}. Adding strings to a ParserElement
        converts them to L{Literal}s by default.
        
        Example::
            greet = Word(alphas) + "," + Word(alphas) + "!"
            hello = "Hello, World!"
            print (hello, "->", greet.parseString(hello))
        Prints::
            Hello, World! -> ['Hello', ',', 'World', '!']
        s4Cannot combine element of type %s with ParserElementt
stackleveliN(
RsR�R"RitwarningstwarnR�t
SyntaxWarningR�R(R�R	((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR
�s
cCs\t|t�r!tj|�}nt|t�sTtjdt|�tdd�dS||S(s]
        Implementation of + operator when left operand is not a C{L{ParserElement}}
        s4Cannot combine element of type %s with ParserElementR�iN(	RsR�R"RiR�R�R�R�R�(R�R	((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRs
cCsmt|t�r!tj|�}nt|t�sTtjdt|�tdd�dSt	|t	j
�|g�S(sQ
        Implementation of - operator, returns C{L{And}} with error stop
        s4Cannot combine element of type %s with ParserElementR�iN(RsR�R"RiR�R�R�R�R�Rt
_ErrorStop(R�R	((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt__sub__s
cCs\t|t�r!tj|�}nt|t�sTtjdt|�tdd�dS||S(s]
        Implementation of - operator when left operand is not a C{L{ParserElement}}
        s4Cannot combine element of type %s with ParserElementR�iN(	RsR�R"RiR�R�R�R�R�(R�R	((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt__rsub__ s
csEt|t�r|d}}n-t|t�r7|dd }|dd
kr_d|df}nt|dt�r�|dd
kr�|ddkr�t��S|ddkr�t��S�|dt��SqLt|dt�rt|dt�r|\}}||8}qLtdt|d�t|d���ntdt|���|dkrgtd��n|dkr�td��n||ko�dknr�td��n|r��fd	��|r
|dkr���|�}qt	�g|��|�}qA�|�}n(|dkr.�}nt	�g|�}|S(s�
        Implementation of * operator, allows use of C{expr * 3} in place of
        C{expr + expr + expr}.  Expressions may also me multiplied by a 2-integer
        tuple, similar to C{{min,max}} multipliers in regular expressions.  Tuples
        may also include C{None} as in:
         - C{expr*(n,None)} or C{expr*(n,)} is equivalent
              to C{expr*n + L{ZeroOrMore}(expr)}
              (read as "at least n instances of C{expr}")
         - C{expr*(None,n)} is equivalent to C{expr*(0,n)}
              (read as "0 to n instances of C{expr}")
         - C{expr*(None,None)} is equivalent to C{L{ZeroOrMore}(expr)}
         - C{expr*(1,None)} is equivalent to C{L{OneOrMore}(expr)}

        Note that C{expr*(None,n)} does not raise an exception if
        more than n exprs exist in the input stream; that is,
        C{expr*(None,n)} does not enforce a maximum number of expr
        occurrences.  If this behavior is desired, then write
        C{expr*(None,n) + ~expr}
        iiis7cannot multiply 'ParserElement' and ('%s','%s') objectss0cannot multiply 'ParserElement' and '%s' objectss/cannot multiply ParserElement by negative values@second tuple value must be greater or equal to first tuple values+cannot multiply ParserElement by 0 or (0,0)cs2|dkr$t��|d��St��SdS(Ni(R(tn(tmakeOptionalListR�(s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�]sN(NN(
RsRottupleR�R0RR�R�t
ValueErrorR(R�R	tminElementstoptElementsR}((R�R�s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt__mul__,sD#

&
) 	cCs
|j|�S(N(R�(R�R	((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt__rmul__pscCsdt|t�r!tj|�}nt|t�sTtjdt|�tdd�dSt	||g�S(sI
        Implementation of | operator - returns C{L{MatchFirst}}
        s4Cannot combine element of type %s with ParserElementR�iN(
RsR�R"RiR�R�R�R�R�R(R�R	((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt__or__ss
cCs\t|t�r!tj|�}nt|t�sTtjdt|�tdd�dS||BS(s]
        Implementation of | operator when left operand is not a C{L{ParserElement}}
        s4Cannot combine element of type %s with ParserElementR�iN(	RsR�R"RiR�R�R�R�R�(R�R	((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt__ror__s
cCsdt|t�r!tj|�}nt|t�sTtjdt|�tdd�dSt	||g�S(sA
        Implementation of ^ operator - returns C{L{Or}}
        s4Cannot combine element of type %s with ParserElementR�iN(
RsR�R"RiR�R�R�R�R�R(R�R	((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt__xor__�s
cCs\t|t�r!tj|�}nt|t�sTtjdt|�tdd�dS||AS(s]
        Implementation of ^ operator when left operand is not a C{L{ParserElement}}
        s4Cannot combine element of type %s with ParserElementR�iN(	RsR�R"RiR�R�R�R�R�(R�R	((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt__rxor__�s
cCsdt|t�r!tj|�}nt|t�sTtjdt|�tdd�dSt	||g�S(sC
        Implementation of & operator - returns C{L{Each}}
        s4Cannot combine element of type %s with ParserElementR�iN(
RsR�R"RiR�R�R�R�R�R
(R�R	((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt__and__�s
cCs\t|t�r!tj|�}nt|t�sTtjdt|�tdd�dS||@S(s]
        Implementation of & operator when left operand is not a C{L{ParserElement}}
        s4Cannot combine element of type %s with ParserElementR�iN(	RsR�R"RiR�R�R�R�R�(R�R	((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt__rand__�s
cCs
t|�S(sE
        Implementation of ~ operator - returns C{L{NotAny}}
        (R(R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt
__invert__�scCs'|dk	r|j|�S|j�SdS(s

        Shortcut for C{L{setResultsName}}, with C{listAllMatches=False}.
        
        If C{name} is given with a trailing C{'*'} character, then C{listAllMatches} will be
        passed as C{True}.
           
        If C{name} is omitted, same as calling C{L{copy}}.

        Example::
            # these are equivalent
            userdata = Word(alphas).setResultsName("name") + Word(nums+"-").setResultsName("socsecno")
            userdata = Word(alphas)("name") + Word(nums+"-")("socsecno")             
        N(R�R�R�(R�R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt__call__�s
cCs
t|�S(s�
        Suppresses the output of this C{ParserElement}; useful to keep punctuation from
        cluttering up returned output.
        (R)(R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pytsuppress�scCs
t|_|S(s
        Disables the skipping of whitespace before matching the characters in the
        C{ParserElement}'s defined pattern.  This is normally only used internally by
        the pyparsing module, but may be needed in some whitespace-sensitive grammars.
        (R�Rp(R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pytleaveWhitespace�s	cCst|_||_t|_|S(s8
        Overrides the default whitespace chars
        (R�RpRqR�Rr(R�Rg((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pytsetWhitespaceChars�s			cCs
t|_|S(s�
        Overrides default behavior to expand C{<TAB>}s to spaces before parsing the input string.
        Must be called before C{parseString} when the input grammar contains elements that
        match C{<TAB>} characters.
        (R�Rt(R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt
parseWithTabs�s	cCsrt|t�rt|�}nt|t�rR||jkrn|jj|�qnn|jjt|j���|S(s�
        Define expression to be ignored (e.g., comments) while doing pattern
        matching; may be called repeatedly, to define multiple comment or other
        ignorable patterns.
        
        Example::
            patt = OneOrMore(Word(alphas))
            patt.parseString('ablaj /* comment */ lskjd') # -> ['ablaj']
            
            patt.ignore(cStyleComment)
            patt.parseString('ablaj /* comment */ lskjd') # -> ['ablaj', 'lskjd']
        (RsR�R)RuRR�(R�R	((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pytignore�s
cCs1|p	t|pt|ptf|_t|_|S(sT
        Enable display of debugging messages while doing pattern matching.
        (RGRKRMR{R�Rv(R�tstartActiont
successActiontexceptionAction((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pytsetDebugActions
s
			cCs)|r|jttt�n	t|_|S(s�
        Enable display of debugging messages while doing pattern matching.
        Set C{flag} to True to enable, False to disable.

        Example::
            wd = Word(alphas).setName("alphaword")
            integer = Word(nums).setName("numword")
            term = wd | integer
            
            # turn on debugging for wd
            wd.setDebug()

            OneOrMore(term).parseString("abc 123 xyz 890")
        
        prints::
            Match alphaword at loc 0(1,1)
            Matched alphaword -> ['abc']
            Match alphaword at loc 3(1,4)
            Exception raised:Expected alphaword (at char 4), (line:1, col:5)
            Match alphaword at loc 7(1,8)
            Matched alphaword -> ['xyz']
            Match alphaword at loc 11(1,12)
            Exception raised:Expected alphaword (at char 12), (line:1, col:13)
            Match alphaword at loc 15(1,16)
            Exception raised:Expected alphaword (at char 15), (line:1, col:16)

        The output shown is that produced by the default debug actions - custom debug actions can be
        specified using L{setDebugActions}. Prior to attempting
        to match the C{wd} expression, the debugging message C{"Match <exprname> at loc <n>(<line>,<col>)"}
        is shown. Then if the parse succeeds, a C{"Matched"} message is shown, or an C{"Exception raised"}
        message is shown. Also note the use of L{setName} to assign a human-readable name to the expression,
        which makes debugging and exception messages easier to understand - for instance, the default
        name created for the C{Word} expression without calling C{setName} is C{"W:(ABCD...)"}.
        (R�RGRKRMR�Rv(R�tflag((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pytsetDebugs#	cCs|jS(N(R�(R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�@scCs
t|�S(N(R(R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�CscCst|_d|_|S(N(R�RwR�Rm(R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�Fs		cCsdS(N((R�R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pytcheckRecursionKscCs|jg�dS(sj
        Check defined expressions for valid structure, check for infinite recursive definitions.
        N(R(R�t
validateTrace((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pytvalidateNscCs�y|j�}Wn5tk
rGt|d��}|j�}WdQXnXy|j||�SWn(tk
r�}tjr}�q�|�nXdS(s�
        Execute the parse expression on the given file or filename.
        If a filename is specified (instead of a file object),
        the entire file is opened, read, and closed before parsing.
        trN(treadR�topenR�RR"R�(R�tfile_or_filenameR�t
file_contentstfRL((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt	parseFileTs
	cCsdt|t�r1||kp0t|�t|�kSt|t�rM|j|�Stt|�|kSdS(N(RsR"tvarsR�R�tsuper(R�R	((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt__eq__hs
"
cCs||kS(N((R�R	((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt__ne__pscCstt|��S(N(thashtid(R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt__hash__sscCs
||kS(N((R�R	((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt__req__vscCs||kS(N((R�R	((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt__rne__yscCs:y!|jt|�d|�tSWntk
r5tSXdS(s�
        Method for quick testing of a parser against a test string. Good for simple 
        inline microtests of sub expressions while building up larger parser.
           
        Parameters:
         - testString - to test against this expression for a match
         - parseAll - (default=C{True}) - flag to pass to C{L{parseString}} when running tests
            
        Example::
            expr = Word(nums)
            assert expr.matches("100")
        R�N(R�RR�RR�(R�t
testStringR�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�|s


t#cCsyt|t�r6tttj|j�j���}nt|t�rTt|�}ng}g}t	}	x|D]�}
|dk	r�|j|
t�s�|r�|
r�|j
|
�qmn|
s�qmndj|�|
g}g}yQ|
jdd�}
|j|
d|�}|j
|jd|��|	o%|}	Wn�tk
r�}
t|
t�rPdnd}d|
kr�|j
t|
j|
��|j
dt|
j|
�dd	|�n|j
d|
jd	|�|j
d
t|
��|	o�|}	|
}n<tk
r*}|j
dt|��|	o|}	|}nX|rX|rG|j
d�ndj|�GHn|j
|
|f�qmW|	|fS(
s3
        Execute the parse expression on a series of test strings, showing each
        test, the parsed results or where the parse failed. Quick and easy way to
        run a parse expression against a list of sample strings.
           
        Parameters:
         - tests - a list of separate test strings, or a multiline string of test strings
         - parseAll - (default=C{True}) - flag to pass to C{L{parseString}} when running tests           
         - comment - (default=C{'#'}) - expression for indicating embedded comments in the test 
              string; pass None to disable comment filtering
         - fullDump - (default=C{True}) - dump results as list followed by results names in nested outline;
              if False, only dump nested list
         - printResults - (default=C{True}) prints test output to stdout
         - failureTests - (default=C{False}) indicates if these tests are expected to fail parsing

        Returns: a (success, results) tuple, where success indicates that all tests succeeded
        (or failed if C{failureTests} is True), and the results contain a list of lines of each 
        test's output
        
        Example::
            number_expr = pyparsing_common.number.copy()

            result = number_expr.runTests('''
                # unsigned integer
                100
                # negative integer
                -100
                # float with scientific notation
                6.02e23
                # integer with scientific notation
                1e-12
                ''')
            print("Success" if result[0] else "Failed!")

            result = number_expr.runTests('''
                # stray character
                100Z
                # missing leading digit before '.'
                -.100
                # too many '.'
                3.14.159
                ''', failureTests=True)
            print("Success" if result[0] else "Failed!")
        prints::
            # unsigned integer
            100
            [100]

            # negative integer
            -100
            [-100]

            # float with scientific notation
            6.02e23
            [6.02e+23]

            # integer with scientific notation
            1e-12
            [1e-12]

            Success
            
            # stray character
            100Z
               ^
            FAIL: Expected end of text (at char 3), (line:1, col:4)

            # missing leading digit before '.'
            -.100
            ^
            FAIL: Expected {real number with scientific notation | real number | signed integer} (at char 0), (line:1, col:1)

            # too many '.'
            3.14.159
                ^
            FAIL: Expected end of text (at char 4), (line:1, col:5)

            Success

        Each test string must be on a single line. If you want to test a string that spans multiple
        lines, create a test like this::

            expr.runTest(r"this is a test\n of strings that spans \n 3 lines")
        
        (Note that this is a raw string literal, you must include the leading 'r'.)
        s
s\nR�R6s(FATAL)Rrt it^sFAIL: sFAIL-EXCEPTION: N(RsR�R�R�RuR�trstript
splitlinesRR�R�R�R�RR�R�R�R3RRRER�R7Ra(R�ttestsR�tcommenttfullDumptprintResultstfailureTestst
allResultstcommentstsuccessRpRtresultR�R�RL((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pytrunTests�sNW'
+
,	
N(PR�R�R�RfR�R�tstaticmethodRhRjR�R�R�R�R�R�RzR�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�RR�R�R�R�R�R�R�R�t_MAX_INTR�R{R�R�R
RR�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�RRR	RR
RRRR�R"(((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR"8s�			&	
		
	
		H			"2G	+					D																	
)									cBseZdZd�ZRS(sT
    Abstract C{ParserElement} subclass, for defining atomic matching patterns.
    cCstt|�jdt�dS(NR(RR*R�R�(R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�	s(R�R�R�R�(((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR*	scBseZdZd�ZRS(s,
    An empty token, will always match.
    cCs2tt|�j�d|_t|_t|_dS(NR(RRR�R�R�RsR�Rx(R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�	s		(R�R�R�R�(((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR	scBs#eZdZd�Zed�ZRS(s(
    A token that will never match.
    cCs;tt|�j�d|_t|_t|_d|_dS(NRsUnmatchable token(	RRR�R�R�RsR�RxRy(R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�*	s
			cCst|||j|��dS(N(RRy(R�RER�R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�1	s(R�R�R�R�R�R�(((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR&	s	cBs#eZdZd�Zed�ZRS(s�
    Token to exactly match a specified string.
    
    Example::
        Literal('blah').parseString('blah')  # -> ['blah']
        Literal('blah').parseString('blahfooblah')  # -> ['blah']
        Literal('blah').parseString('bla')  # -> Exception: Expected "blah"
    
    For case-insensitive matching, use L{CaselessLiteral}.
    
    For keyword matching (force word break before and after the matched string),
    use L{Keyword} or L{CaselessKeyword}.
    cCs�tt|�j�||_t|�|_y|d|_Wn0tk
rntj	dt
dd�t|_nXdt
|j�|_d|j|_t|_t|_dS(Nis2null string passed to Literal; use Empty() insteadR�is"%s"s	Expected (RRR�tmatchR�tmatchLentfirstMatchCharR�R�R�R�RR^RR�RyR�RsRx(R�tmatchString((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�C	s	
	

	cCsg|||jkrK|jdks7|j|j|�rK||j|jfSt|||j|��dS(Ni(R'R&t
startswithR%RRy(R�RER�R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�V	s$(R�R�R�R�R�R�(((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR5	s
	cBsKeZdZedZded�Zed�Z	d�Z
ed��ZRS(s\
    Token to exactly match a specified string as a keyword, that is, it must be
    immediately followed by a non-keyword character.  Compare with C{L{Literal}}:
     - C{Literal("if")} will match the leading C{'if'} in C{'ifAndOnlyIf'}.
     - C{Keyword("if")} will not; it will only match the leading C{'if'} in C{'if x=1'}, or C{'if(y==2)'}
    Accepts two optional constructor arguments in addition to the keyword string:
     - C{identChars} is a string of characters that would be valid identifier characters,
          defaulting to all alphanumerics + "_" and "$"
     - C{caseless} allows case-insensitive matching, default is C{False}.
       
    Example::
        Keyword("start").parseString("start")  # -> ['start']
        Keyword("start").parseString("starting")  # -> Exception

    For case-insensitive matching, use L{CaselessKeyword}.
    s_$cCs�tt|�j�|dkr+tj}n||_t|�|_y|d|_Wn't	k
r}t
jdtdd�nXd|j|_
d|j
|_t|_t|_||_|r�|j�|_|j�}nt|�|_dS(Nis2null string passed to Keyword; use Empty() insteadR�is"%s"s	Expected (RRR�R�tDEFAULT_KEYWORD_CHARSR%R�R&R'R�R�R�R�R�RyR�RsRxtcaselesstuppert
caselessmatchR�t
identChars(R�R(R.R+((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�q	s&	
				cCsb|jr�||||j!j�|jkrF|t|�|jkse|||jj�|jkrF|dks�||dj�|jkrF||j|jfSn�|||jkrF|jdks�|j|j|�rF|t|�|jks|||j|jkrF|dks2||d|jkrF||j|jfSt	|||j
|��dS(Nii(R+R&R,R-R�R.R%R'R)RRy(R�RER�R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��	s	#9)$3#cCs%tt|�j�}tj|_|S(N(RRR�R*R.(R�R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��	scCs
|t_dS(s,Overrides the default Keyword chars
        N(RR*(Rg((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pytsetDefaultKeywordChars�	sN(
R�R�R�R1R*R�R�R�R�R�R�R#R/(((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR^	s
	cBs#eZdZd�Zed�ZRS(sl
    Token to match a specified string, ignoring case of letters.
    Note: the matched results will always be in the case of the given
    match string, NOT the case of the input text.

    Example::
        OneOrMore(CaselessLiteral("CMD")).parseString("cmd CMD Cmd10") # -> ['CMD', 'CMD', 'CMD']
        
    (Contrast with example for L{CaselessKeyword}.)
    cCsItt|�j|j��||_d|j|_d|j|_dS(Ns'%s's	Expected (RRR�R,treturnStringR�Ry(R�R(((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��	s	cCsS||||j!j�|jkr7||j|jfSt|||j|��dS(N(R&R,R%R0RRy(R�RER�R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��	s#(R�R�R�R�R�R�(((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�	s
	cBs&eZdZdd�Zed�ZRS(s�
    Caseless version of L{Keyword}.

    Example::
        OneOrMore(CaselessKeyword("CMD")).parseString("cmd CMD Cmd10") # -> ['CMD', 'CMD']
        
    (Contrast with example for L{CaselessLiteral}.)
    cCs#tt|�j||dt�dS(NR+(RRR�R�(R�R(R.((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��	scCs�||||j!j�|jkrp|t|�|jks\|||jj�|jkrp||j|jfSt|||j|��dS(N(R&R,R-R�R.R%RRy(R�RER�R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��	s#9N(R�R�R�R�R�R�R�(((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�	scBs&eZdZdd�Zed�ZRS(sx
    A variation on L{Literal} which matches "close" matches, that is, 
    strings with at most 'n' mismatching characters. C{CloseMatch} takes parameters:
     - C{match_string} - string to be matched
     - C{maxMismatches} - (C{default=1}) maximum number of mismatches allowed to count as a match
    
    The results from a successful parse will contain the matched text from the input string and the following named results:
     - C{mismatches} - a list of the positions within the match_string where mismatches were found
     - C{original} - the original match_string used to compare against the input string
    
    If C{mismatches} is an empty list, then the match was an exact match.
    
    Example::
        patt = CloseMatch("ATCATCGAATGGA")
        patt.parseString("ATCATCGAAXGGA") # -> (['ATCATCGAAXGGA'], {'mismatches': [[9]], 'original': ['ATCATCGAATGGA']})
        patt.parseString("ATCAXCGAAXGGA") # -> Exception: Expected 'ATCATCGAATGGA' (with up to 1 mismatches) (at char 0), (line:1, col:1)

        # exact match
        patt.parseString("ATCATCGAATGGA") # -> (['ATCATCGAATGGA'], {'mismatches': [[]], 'original': ['ATCATCGAATGGA']})

        # close match allowing up to 2 mismatches
        patt = CloseMatch("ATCATCGAATGGA", maxMismatches=2)
        patt.parseString("ATCAXCGAAXGGA") # -> (['ATCAXCGAAXGGA'], {'mismatches': [[4, 9]], 'original': ['ATCATCGAATGGA']})
    icCs]tt|�j�||_||_||_d|j|jf|_t|_t|_	dS(Ns&Expected %r (with up to %d mismatches)(
RRjR�R�tmatch_stringt
maxMismatchesRyR�RxRs(R�R1R2((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��	s				cCs|}t|�}|t|j�}||kr|j}d}g}	|j}
x�tt|||!|j��D]J\}}|\}}
||
kro|	j|�t|	�|
kr�Pq�qoqoW|d}t|||!g�}|j|d<|	|d<||fSnt|||j|��dS(Niitoriginalt
mismatches(	R�R1R2R�R�RR RRy(R�RER�R�tstartR�tmaxlocR1tmatch_stringlocR4R2ts_mtsrctmattresults((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��	s(		,




(R�R�R�R�R�R�(((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRj�	s	cBs>eZdZddddedd�Zed�Zd�ZRS(s	
    Token for matching words composed of allowed character sets.
    Defined with string containing all allowed initial characters,
    an optional string containing allowed body characters (if omitted,
    defaults to the initial character set), and an optional minimum,
    maximum, and/or exact length.  The default value for C{min} is 1 (a
    minimum value < 1 is not valid); the default values for C{max} and C{exact}
    are 0, meaning no maximum or exact length restriction. An optional
    C{excludeChars} parameter can list characters that might be found in 
    the input C{bodyChars} string; useful to define a word of all printables
    except for one or two characters, for instance.
    
    L{srange} is useful for defining custom character set strings for defining 
    C{Word} expressions, using range notation from regular expression character sets.
    
    A common mistake is to use C{Word} to match a specific literal string, as in 
    C{Word("Address")}. Remember that C{Word} uses the string argument to define
    I{sets} of matchable characters. This expression would match "Add", "AAA",
    "dAred", or any other word made up of the characters 'A', 'd', 'r', 'e', and 's'.
    To match an exact literal string, use L{Literal} or L{Keyword}.

    pyparsing includes helper strings for building Words:
     - L{alphas}
     - L{nums}
     - L{alphanums}
     - L{hexnums}
     - L{alphas8bit} (alphabetic characters in ASCII range 128-255 - accented, tilded, umlauted, etc.)
     - L{punc8bit} (non-alphabetic characters in ASCII range 128-255 - currency, symbols, superscripts, diacriticals, etc.)
     - L{printables} (any non-whitespace character)

    Example::
        # a word composed of digits
        integer = Word(nums) # equivalent to Word("0123456789") or Word(srange("0-9"))
        
        # a word with a leading capital, and zero or more lowercase
        capital_word = Word(alphas.upper(), alphas.lower())

        # hostnames are alphanumeric, with leading alpha, and '-'
        hostname = Word(alphas, alphanums+'-')
        
        # roman numeral (not a strict parser, accepts invalid mix of characters)
        roman = Word("IVXLCDM")
        
        # any string of non-whitespace characters, except for ','
        csv_value = Word(printables, excludeChars=",")
    iics�tt|�j��rcdj�fd�|D��}|rcdj�fd�|D��}qcn||_t|�|_|r�||_t|�|_n||_t|�|_|dk|_	|dkr�t
d��n||_|dkr�||_n	t
|_|dkr)||_||_nt|�|_d|j|_t|_||_d|j|jkr}|dkr}|dkr}|dkr}|j|jkr�d	t|j�|_net|j�dkr�d
tj|j�t|j�f|_n%dt|j�t|j�f|_|jrDd|jd|_nytj|j�|_Wq}tk
ryd|_q}XndS(
NRrc3s!|]}|�kr|VqdS(N((R�R�(texcludeChars(s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pys	<genexpr>7
sc3s!|]}|�kr|VqdS(N((R�R�(R<(s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pys	<genexpr>9
siisZcannot specify a minimum length < 1; use Optional(Word()) if zero-length word is permitteds	Expected Rs[%s]+s%s[%s]*s	[%s][%s]*s\b(RR-R�R�t
initCharsOrigR�t	initCharst
bodyCharsOrigt	bodyCharstmaxSpecifiedR�tminLentmaxLenR$RR�RyR�Rxt	asKeywordt_escapeRegexRangeCharstreStringR�R|tescapetcompileRaR�(R�R>R@tmintmaxtexactRDR<((R<s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�4
sT%								:	
c
Cs�|jr[|jj||�}|s?t|||j|��n|j�}||j�fS|||jkr�t|||j|��n|}|d7}t|�}|j}||j	}t
||�}x*||kr�|||kr�|d7}q�Wt}	|||jkrt
}	n|jrG||krG|||krGt
}	n|jr�|dkrp||d|ks�||kr�|||kr�t
}	q�n|	r�t|||j|��n||||!fS(Nii(R|R%RRytendtgroupR>R�R@RCRIR�RBR�RARD(
R�RER�R�R!R5R�t	bodycharsR6tthrowException((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�j
s6	
	
	%		<cCs�ytt|�j�SWntk
r*nX|jdkr�d�}|j|jkr}d||j�||j�f|_q�d||j�|_n|jS(NcSs&t|�dkr|d dS|SdS(Nis...(R�(R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt
charsAsStr�
ss	W:(%s,%s)sW:(%s)(RR-R�RaRmR�R=R?(R�RP((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��
s
	(N(	R�R�R�R�R�R�R�R�R�(((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR-
s.6#cBsDeZdZeejd��Zdd�Zed�Z	d�Z
RS(s�
    Token for matching strings that match a given regular expression.
    Defined with string specifying the regular expression in a form recognized by the inbuilt Python re module.
    If the given regex contains named groups (defined using C{(?P<name>...)}), these will be preserved as 
    named parse results.

    Example::
        realnum = Regex(r"[+-]?\d+\.\d*")
        date = Regex(r'(?P<year>\d{4})-(?P<month>\d\d?)-(?P<day>\d\d?)')
        # ref: http://stackoverflow.com/questions/267399/how-do-you-match-only-valid-roman-numerals-with-a-regular-expression
        roman = Regex(r"M{0,4}(CM|CD|D?C{0,3})(XC|XL|L?X{0,3})(IX|IV|V?I{0,3})")
    s[A-Z]icCs3tt|�j�t|t�r�|sAtjdtdd�n||_||_	y+t
j|j|j	�|_
|j|_Wq�t
jk
r�tjd|tdd��q�XnIt|tj�r�||_
t|�|_|_||_	ntd��t|�|_d|j|_t|_t|_dS(s�The parameters C{pattern} and C{flags} are passed to the C{re.compile()} function as-is. See the Python C{re} module for an explanation of the acceptable patterns and flags.s0null string passed to Regex; use Empty() insteadR�is$invalid pattern (%s) passed to RegexsCRegex may only be constructed with a string or a compiled RE objects	Expected N(RR%R�RsR�R�R�R�tpatterntflagsR|RHRFt
sre_constantsterrortcompiledREtypeRuR�RR�RyR�RxR�Rs(R�RQRR((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��
s.			


		cCs�|jj||�}|s6t|||j|��n|j�}|j�}t|j��}|r�x|D]}||||<qmWn||fS(N(R|R%RRyRLt	groupdictR RM(R�RER�R�R!tdR}R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��
s
cCsZytt|�j�SWntk
r*nX|jdkrSdt|j�|_n|jS(NsRe:(%s)(RR%R�RaRmR�R�RQ(R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��
s
(R�R�R�R�R|RHRUR�R�R�R�(((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR%�
s
"
cBs>eZdZddeeded�Zed�Zd�ZRS(s�
    Token for matching strings that are delimited by quoting characters.
    
    Defined with the following parameters:
        - quoteChar - string of one or more characters defining the quote delimiting string
        - escChar - character to escape quotes, typically backslash (default=C{None})
        - escQuote - special quote sequence to escape an embedded quote string (such as SQL's "" to escape an embedded ") (default=C{None})
        - multiline - boolean indicating whether quotes can span multiple lines (default=C{False})
        - unquoteResults - boolean indicating whether the matched text should be unquoted (default=C{True})
        - endQuoteChar - string of one or more characters defining the end of the quote delimited string (default=C{None} => same as quoteChar)
        - convertWhitespaceEscapes - convert escaped whitespace (C{'\t'}, C{'\n'}, etc.) to actual whitespace (default=C{True})

    Example::
        qs = QuotedString('"')
        print(qs.searchString('lsjdf "This is the quote" sldjf'))
        complex_qs = QuotedString('{{', endQuoteChar='}}')
        print(complex_qs.searchString('lsjdf {{This is the "quote"}} sldjf'))
        sql_qs = QuotedString('"', escQuote='""')
        print(sql_qs.searchString('lsjdf "This is the quote with ""embedded"" quotes" sldjf'))
    prints::
        [['This is the quote']]
        [['This is the "quote"']]
        [['This is the quote with "embedded" quotes']]
    c	stt��j�|j�}|sGtjdtdd�t��n|dkr\|}n4|j�}|s�tjdtdd�t��n|�_	t
|��_|d�_|�_
t
|��_|�_|�_|�_|�_|rTtjtjB�_dtj�j	�t�j
d�|dk	rDt|�pGdf�_nPd�_dtj�j	�t�j
d�|dk	r�t|�p�df�_t
�j
�d	kr�jd
dj�fd�tt
�j
�d	dd
�D��d7_n|r*�jdtj|�7_n|rh�jdtj|�7_tj�j�d�_n�jdtj�j
�7_y+tj�j�j��_�j�_Wn4tj k
r�tjd�jtdd��nXt!���_"d�j"�_#t$�_%t&�_'dS(Ns$quoteChar cannot be the empty stringR�is'endQuoteChar cannot be the empty stringis%s(?:[^%s%s]Rrs%s(?:[^%s\n\r%s]is|(?:s)|(?:c3s<|]2}dtj�j| �t�j|�fVqdS(s%s[^%s]N(R|RGtendQuoteCharRE(R�R�(R�(s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pys	<genexpr>/si����t)s|(?:%s)s|(?:%s.)s(.)s)*%ss$invalid pattern (%s) passed to Regexs	Expected ((RR#R�R�R�R�R�tSyntaxErrorR�t	quoteCharR�tquoteCharLentfirstQuoteCharRXtendQuoteCharLentescChartescQuotetunquoteResultstconvertWhitespaceEscapesR|t	MULTILINEtDOTALLRRRGRERQR�R�tescCharReplacePatternRHRFRSRTRR�RyR�RxR�Rs(R�R[R_R`t	multilineRaRXRb((R�s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�sf		
					(	%E
	c	CsT|||jkr(|jj||�p+d}|sOt|||j|��n|j�}|j�}|jrJ||j	|j
!}t|t�rJd|kr�|j
r�idd6dd6dd6dd	6}x/|j�D]\}}|j||�}q�Wn|jr tj|jd
|�}n|jrG|j|j|j�}qGqJn||fS(Ns\s	s\ts
s\nss\fs
s\rs\g<1>(R]R|R%R�RRyRLRMRaR\R^RsR�RbR�R�R_R�ReR`RX(	R�RER�R�R!R}tws_maptwslittwschar((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�Gs*.	
		!cCs]ytt|�j�SWntk
r*nX|jdkrVd|j|jf|_n|jS(Ns.quoted string, starting with %s ending with %s(RR#R�RaRmR�R[RX(R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�js
N(	R�R�R�R�R�R�R�R�R�(((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR#�
sA#cBs5eZdZdddd�Zed�Zd�ZRS(s�
    Token for matching words composed of characters I{not} in a given set (will
    include whitespace in matched characters if not listed in the provided exclusion set - see example).
    Defined with string containing all disallowed characters, and an optional
    minimum, maximum, and/or exact length.  The default value for C{min} is 1 (a
    minimum value < 1 is not valid); the default values for C{max} and C{exact}
    are 0, meaning no maximum or exact length restriction.

    Example::
        # define a comma-separated-value as anything that is not a ','
        csv_value = CharsNotIn(',')
        print(delimitedList(csv_value).parseString("dkls,lsdkjf,s12 34,@!#,213"))
    prints::
        ['dkls', 'lsdkjf', 's12 34', '@!#', '213']
    iicCs�tt|�j�t|_||_|dkr@td��n||_|dkra||_n	t	|_|dkr�||_||_nt
|�|_d|j|_|jdk|_
t|_dS(Nisfcannot specify a minimum length < 1; use Optional(CharsNotIn()) if zero-length char group is permittedis	Expected (RRR�R�RptnotCharsR�RBRCR$RR�RyRsRx(R�RjRIRJRK((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��s 					cCs�|||jkr.t|||j|��n|}|d7}|j}t||jt|��}x*||kr�|||kr�|d7}qfW|||jkr�t|||j|��n||||!fS(Ni(RjRRyRIRCR�RB(R�RER�R�R5tnotcharstmaxlen((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��s
	cCs�ytt|�j�SWntk
r*nX|jdkryt|j�dkrfd|jd |_qyd|j|_n|jS(Nis
!W:(%s...)s!W:(%s)(RRR�RaRmR�R�Rj(R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��s
(R�R�R�R�R�R�R�(((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRvscBsXeZdZidd6dd6dd6dd6d	d
6Zddd
d
d�Zed�ZRS(s�
    Special matching class for matching whitespace.  Normally, whitespace is ignored
    by pyparsing grammars.  This class is included when some whitespace structures
    are significant.  Define with a string containing the whitespace characters to be
    matched; default is C{" \t\r\n"}.  Also takes optional C{min}, C{max}, and C{exact} arguments,
    as defined for the C{L{Word}} class.
    s<SPC>Rs<TAB>s	s<LF>s
s<CR>s
s<FF>ss 	
iics�tt��j�|�_�jdj�fd��jD���djd��jD���_t�_	d�j�_
|�_|dkr�|�_n	t
�_|dkr�|�_|�_ndS(NRrc3s$|]}|�jkr|VqdS(N(t
matchWhite(R�R�(R�(s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pys	<genexpr>�scss|]}tj|VqdS(N(R,t	whiteStrs(R�R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pys	<genexpr>�ss	Expected i(RR,R�RmR�R�RqR�R�RsRyRBRCR$(R�twsRIRJRK((R�s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��s	)				cCs�|||jkr.t|||j|��n|}|d7}||j}t|t|��}x-||kr�|||jkr�|d7}qcW|||jkr�t|||j|��n||||!fS(Ni(RmRRyRCRIR�RB(R�RER�R�R5R6((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��s

"(R�R�R�RnR�R�R�(((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR,�s
t_PositionTokencBseZd�ZRS(cCs8tt|�j�|jj|_t|_t|_	dS(N(
RRpR�R^R�R�R�RsR�Rx(R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��s	(R�R�R�(((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRp�scBs,eZdZd�Zd�Zed�ZRS(sb
    Token to advance to a specific column of input text; useful for tabular report scraping.
    cCs tt|�j�||_dS(N(RRR�R7(R�tcolno((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��scCs�t||�|jkr�t|�}|jrB|j||�}nxE||kr�||j�r�t||�|jkr�|d7}qEWn|S(Ni(R7R�RuR�tisspace(R�RER�R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��s	7cCs^t||�}||jkr6t||d|��n||j|}|||!}||fS(NsText not in expected column(R7R(R�RER�R�tthiscoltnewlocR}((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�s
(R�R�R�R�R�R�R�(((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�s			cBs#eZdZd�Zed�ZRS(s�
    Matches if current position is at the beginning of a line within the parse string
    
    Example::
    
        test = '''        AAA this line
        AAA and this line
          AAA but not this one
        B AAA and definitely not this one
        '''

        for t in (LineStart() + 'AAA' + restOfLine).searchString(test):
            print(t)
    
    Prints::
        ['AAA', ' this line']
        ['AAA', ' and this line']    

    cCs tt|�j�d|_dS(NsExpected start of line(RRR�Ry(R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�&scCs;t||�dkr|gfSt|||j|��dS(Ni(R7RRy(R�RER�R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�*s
(R�R�R�R�R�R�(((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRs	cBs#eZdZd�Zed�ZRS(sU
    Matches if current position is at the end of a line within the parse string
    cCs<tt|�j�|jtjjdd��d|_dS(Ns
RrsExpected end of line(RRR�R�R"RfR�Ry(R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�3scCs�|t|�krK||dkr0|ddfSt|||j|��n8|t|�krk|dgfSt|||j|��dS(Ns
i(R�RRy(R�RER�R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�8s(R�R�R�R�R�R�(((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR/s	cBs#eZdZd�Zed�ZRS(sM
    Matches if current position is at the beginning of the parse string
    cCs tt|�j�d|_dS(NsExpected start of text(RR(R�Ry(R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�GscCsL|dkrB||j|d�krBt|||j|��qBn|gfS(Ni(R�RRy(R�RER�R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�Ks(R�R�R�R�R�R�(((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR(Cs	cBs#eZdZd�Zed�ZRS(sG
    Matches if current position is at the end of the parse string
    cCs tt|�j�d|_dS(NsExpected end of text(RR'R�Ry(R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�VscCs�|t|�kr-t|||j|��nT|t|�krM|dgfS|t|�kri|gfSt|||j|��dS(Ni(R�RRy(R�RER�R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�Zs
(R�R�R�R�R�R�(((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR'Rs	cBs&eZdZed�Zed�ZRS(sp
    Matches if the current position is at the beginning of a Word, and
    is not preceded by any character in a given set of C{wordChars}
    (default=C{printables}). To emulate the C{} behavior of regular expressions,
    use C{WordStart(alphanums)}. C{WordStart} will also match at the beginning of
    the string being parsed, or at the beginning of a line.
    cCs/tt|�j�t|�|_d|_dS(NsNot at the start of a word(RR/R�R�t	wordCharsRy(R�Ru((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�lscCs^|dkrT||d|jks6|||jkrTt|||j|��qTn|gfS(Nii(RuRRy(R�RER�R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�qs
(R�R�R�RTR�R�R�(((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR/dscBs&eZdZed�Zed�ZRS(sZ
    Matches if the current position is at the end of a Word, and
    is not followed by any character in a given set of C{wordChars}
    (default=C{printables}). To emulate the C{} behavior of regular expressions,
    use C{WordEnd(alphanums)}. C{WordEnd} will also match at the end of
    the string being parsed, or at the end of a line.
    cCs8tt|�j�t|�|_t|_d|_dS(NsNot at the end of a word(RR.R�R�RuR�RpRy(R�Ru((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��s	cCsvt|�}|dkrl||krl|||jksN||d|jkrlt|||j|��qln|gfS(Nii(R�RuRRy(R�RER�R�R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��s(R�R�R�RTR�R�R�(((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR.xscBsqeZdZed�Zd�Zd�Zd�Zd�Zd�Z	d�Z
ed�Zgd	�Zd
�Z
RS(s^
    Abstract subclass of ParserElement, for combining and post-processing parsed tokens.
    cCs�tt|�j|�t|t�r4t|�}nt|t�r[tj|�g|_	n�t|t
j�r�t|�}td�|D��r�t
tj|�}nt|�|_	n3yt|�|_	Wntk
r�|g|_	nXt|_dS(Ncss|]}t|t�VqdS(N(RsR�(R�RF((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pys	<genexpr>�s(RRR�RsR�R�R�R"RitexprsR�tIterabletallR�R�R�R}(R�RvR((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��s
cCs|j|S(N(Rv(R�R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��scCs|jj|�d|_|S(N(RvRR�Rm(R�R	((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�s	cCsPt|_g|jD]}|j�^q|_x|jD]}|j�q8W|S(s~Extends C{leaveWhitespace} defined in base class, and also invokes C{leaveWhitespace} on
           all contained expressions.(R�RpRvR�R�(R�R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��s
	%cCs�t|t�rb||jkr�tt|�j|�x(|jD]}|j|jd�q>Wq�n>tt|�j|�x%|jD]}|j|jd�q�W|S(Ni����(RsR)RuRRR�Rv(R�R	R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��scCsfytt|�j�SWntk
r*nX|jdkr_d|jjt|j	�f|_n|jS(Ns%s:(%s)(
RRR�RaRmR�R^R�RRv(R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��s
%cCswtt|�j�x|jD]}|j�qWt|j�dkr`|jd}t||j�r�|jr�|jdkr�|j
r�|j|jdg|_d|_|j|jO_|j
|j
O_
n|jd}t||j�r`|jr`|jdkr`|j
r`|jd |j|_d|_|j|jO_|j
|j
O_
q`ndt|�|_|S(Niiii����s	Expected (RRR�RvR�RsR^RkRnR�RvRmRsRxRRy(R�R�R	((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��s0


	


	cCstt|�j||�}|S(N(RRR�(R�R�R�R}((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��scCs@||g}x|jD]}|j|�qW|jg�dS(N(RvRR(R�RttmpR�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�scCs>tt|�j�}g|jD]}|j�^q|_|S(N(RRR�Rv(R�R}R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��s%(R�R�R�R�R�R�RR�R�R�R�R�RR�(((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�s						
	"cBsWeZdZdefd��YZed�Zed�Zd�Zd�Z	d�Z
RS(s

    Requires all given C{ParseExpression}s to be found in the given order.
    Expressions may be separated by whitespace.
    May be constructed using the C{'+'} operator.
    May also be constructed using the C{'-'} operator, which will suppress backtracking.

    Example::
        integer = Word(nums)
        name_expr = OneOrMore(Word(alphas))

        expr = And([integer("id"),name_expr("name"),integer("age")])
        # more easily written as:
        expr = integer("id") + name_expr("name") + integer("age")
    R�cBseZd�ZRS(cOs3ttj|�j||�d|_|j�dS(Nt-(RRR�R�R�R�(R�R�R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�
s	(R�R�R�(((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�
scCsltt|�j||�td�|jD��|_|j|jdj�|jdj|_t	|_
dS(Ncss|]}|jVqdS(N(Rs(R�R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pys	<genexpr>
si(RRR�RxRvRsR�RqRpR�R}(R�RvR((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�
s
c	Cs?|jdj|||dt�\}}t}x|jdD]�}t|tj�r`t}q<n|r�y|j|||�\}}Wqtk
r��qtk
r�}d|_
tj|��qtk
r�t|t
|�|j|��qXn|j|||�\}}|s$|j�r<||7}q<q<W||fS(NiR�i(RvR�R�RsRR�R�R!RR�t
__traceback__R�R�R�RyR�(	R�RER�R�t
resultlistt	errorStopR�t
exprtokensR�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�
s((
	
%cCs.t|t�r!tj|�}n|j|�S(N(RsR�R"RiR(R�R	((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR5
scCs@||g}x+|jD] }|j|�|jsPqqWdS(N(RvRRs(R�R�tsubRecCheckListR�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR:
s

	cCsVt|d�r|jS|jdkrOddjd�|jD��d|_n|jS(NR�t{Rcss|]}t|�VqdS(N(R(R�R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pys	<genexpr>F
st}(R�R�RmR�R�Rv(R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�A
s
*(R�R�R�RR�R�R�R�RRR�(((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�s		cBsAeZdZed�Zed�Zd�Zd�Zd�Z	RS(s�
    Requires that at least one C{ParseExpression} is found.
    If two expressions match, the expression that matches the longest string will be used.
    May be constructed using the C{'^'} operator.

    Example::
        # construct Or using '^' operator
        
        number = Word(nums) ^ Combine(Word(nums) + '.' + Word(nums))
        print(number.searchString("123 3.1416 789"))
    prints::
        [['123'], ['3.1416'], ['789']]
    cCsNtt|�j||�|jrAtd�|jD��|_n	t|_dS(Ncss|]}|jVqdS(N(Rs(R�R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pys	<genexpr>\
s(RRR�RvR4RsR�(R�RvR((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�Y
s	cCs�d}d}g}x�|jD]�}y|j||�}Wn�tk
rw}	d|	_|	j|kr�|	}|	j}q�qtk
r�t|�|kr�t|t|�|j|�}t|�}q�qX|j	||f�qW|rh|j
dd��xn|D]c\}
}y|j|||�SWq�tk
r`}	d|	_|	j|kra|	}|	j}qaq�Xq�Wn|dk	r�|j|_|�nt||d|��dS(Ni����RcSs	|dS(Ni((tx((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRqu
Rrs no defined alternatives to match(
R�RvR�RR{R�R�R�RyRtsortR�R�(R�RER�R�t	maxExcLoctmaxExceptionR�R�tloc2R�t_((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�`
s<	
		cCs.t|t�r!tj|�}n|j|�S(N(RsR�R"RiR(R�R	((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt__ixor__�
scCsVt|d�r|jS|jdkrOddjd�|jD��d|_n|jS(NR�R�s ^ css|]}t|�VqdS(N(R(R�R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pys	<genexpr>�
sR�(R�R�RmR�R�Rv(R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��
s
*cCs3||g}x|jD]}|j|�qWdS(N(RvR(R�R�RR�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�
s(
R�R�R�R�R�R�R�R�R�R(((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRK
s
&			cBsAeZdZed�Zed�Zd�Zd�Zd�Z	RS(s�
    Requires that at least one C{ParseExpression} is found.
    If two expressions match, the first one listed is the one that will match.
    May be constructed using the C{'|'} operator.

    Example::
        # construct MatchFirst using '|' operator
        
        # watch the order of expressions to match
        number = Word(nums) | Combine(Word(nums) + '.' + Word(nums))
        print(number.searchString("123 3.1416 789")) #  Fail! -> [['123'], ['3'], ['1416'], ['789']]

        # put more selective expression first
        number = Combine(Word(nums) + '.' + Word(nums)) | Word(nums)
        print(number.searchString("123 3.1416 789")) #  Better -> [['123'], ['3.1416'], ['789']]
    cCsNtt|�j||�|jrAtd�|jD��|_n	t|_dS(Ncss|]}|jVqdS(N(Rs(R�R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pys	<genexpr>�
s(RRR�RvR4RsR�(R�RvR((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��
s	c	Cs�d}d}x�|jD]�}y|j|||�}|SWqtk
ro}|j|kr�|}|j}q�qtk
r�t|�|kr�t|t|�|j|�}t|�}q�qXqW|dk	r�|j|_|�nt||d|��dS(Ni����s no defined alternatives to match(	R�RvR�RR�R�R�RyR�(	R�RER�R�R�R�R�R}R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��
s$
	cCs.t|t�r!tj|�}n|j|�S(N(RsR�R"RiR(R�R	((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt__ior__�
scCsVt|d�r|jS|jdkrOddjd�|jD��d|_n|jS(NR�R�s | css|]}t|�VqdS(N(R(R�R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pys	<genexpr>�
sR�(R�R�RmR�R�Rv(R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��
s
*cCs3||g}x|jD]}|j|�qWdS(N(RvR(R�R�RR�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�
s(
R�R�R�R�R�R�R�R�R�R(((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�
s			cBs8eZdZed�Zed�Zd�Zd�ZRS(sm
    Requires all given C{ParseExpression}s to be found, but in any order.
    Expressions may be separated by whitespace.
    May be constructed using the C{'&'} operator.

    Example::
        color = oneOf("RED ORANGE YELLOW GREEN BLUE PURPLE BLACK WHITE BROWN")
        shape_type = oneOf("SQUARE CIRCLE TRIANGLE STAR HEXAGON OCTAGON")
        integer = Word(nums)
        shape_attr = "shape:" + shape_type("shape")
        posn_attr = "posn:" + Group(integer("x") + ',' + integer("y"))("posn")
        color_attr = "color:" + color("color")
        size_attr = "size:" + integer("size")

        # use Each (using operator '&') to accept attributes in any order 
        # (shape and posn are required, color and size are optional)
        shape_spec = shape_attr & posn_attr & Optional(color_attr) & Optional(size_attr)

        shape_spec.runTests('''
            shape: SQUARE color: BLACK posn: 100, 120
            shape: CIRCLE size: 50 color: BLUE posn: 50,80
            color:GREEN size:20 shape:TRIANGLE posn:20,40
            '''
            )
    prints::
        shape: SQUARE color: BLACK posn: 100, 120
        ['shape:', 'SQUARE', 'color:', 'BLACK', 'posn:', ['100', ',', '120']]
        - color: BLACK
        - posn: ['100', ',', '120']
          - x: 100
          - y: 120
        - shape: SQUARE


        shape: CIRCLE size: 50 color: BLUE posn: 50,80
        ['shape:', 'CIRCLE', 'size:', '50', 'color:', 'BLUE', 'posn:', ['50', ',', '80']]
        - color: BLUE
        - posn: ['50', ',', '80']
          - x: 50
          - y: 80
        - shape: CIRCLE
        - size: 50


        color: GREEN size: 20 shape: TRIANGLE posn: 20,40
        ['color:', 'GREEN', 'size:', '20', 'shape:', 'TRIANGLE', 'posn:', ['20', ',', '40']]
        - color: GREEN
        - posn: ['20', ',', '40']
          - x: 20
          - y: 40
        - shape: TRIANGLE
        - size: 20
    cCsKtt|�j||�td�|jD��|_t|_t|_dS(Ncss|]}|jVqdS(N(Rs(R�R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pys	<genexpr>s(	RR
R�RxRvRsR�RptinitExprGroups(R�RvR((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�s	cCs4|jrLtd�|jD��|_g|jD]}t|t�r/|j^q/}g|jD]%}|jr]t|t�r]|^q]}|||_g|jD]}t|t	�r�|j^q�|_
g|jD]}t|t�r�|j^q�|_g|jD]$}t|tt	tf�s|^q|_
|j
|j7_
t|_n|}|j
}|j}	g}
t}x�|r_||	|j
|j}g}
x�|D]�}y|j||�}Wntk
r�|
j|�q�X|
j|jjt|�|��||kr|j|�q�||	kr�|	j|�q�q�Wt|
�t|�krut}ququW|r�djd�|D��}t||d|��n|
g|jD]*}t|t�r�|j|	kr�|^q�7}
g}x6|
D].}|j|||�\}}|j|�q�Wt|tg��}||fS(Ncss3|])}t|t�rt|j�|fVqdS(N(RsRRRF(R�R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pys	<genexpr>ss, css|]}t|�VqdS(N(R(R�R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pys	<genexpr>=ss*Missing one or more required elements (%s)(R�R�Rvtopt1mapRsRRFRst	optionalsR0tmultioptionalsRt
multirequiredtrequiredR�R�R�RRR�RtremoveR�R�R�tsumR (R�RER�R�R�topt1topt2ttmpLocttmpReqdttmpOptt
matchOrdertkeepMatchingttmpExprstfailedtmissingR|R;tfinalResults((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�sP	.5
117

	

"
>
cCsVt|d�r|jS|jdkrOddjd�|jD��d|_n|jS(NR�R�s & css|]}t|�VqdS(N(R(R�R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pys	<genexpr>PsR�(R�R�RmR�R�Rv(R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�Ks
*cCs3||g}x|jD]}|j|�qWdS(N(RvR(R�R�RR�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRTs(R�R�R�R�R�R�R�R(((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR
�
s
51		cBs_eZdZed�Zed�Zd�Zd�Zd�Z	d�Z
gd�Zd�ZRS(	sa
    Abstract subclass of C{ParserElement}, for combining and post-processing parsed tokens.
    cCs�tt|�j|�t|t�rattjt�rItj|�}qatjt	|��}n||_
d|_|dk	r�|j
|_
|j|_|j|j�|j|_|j|_|j|_|jj|j�ndS(N(RRR�RsR�t
issubclassR"RiR*RRFR�RmRxRsR�RqRpRoR}RuR(R�RFR((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�^s		cCsG|jdk	r+|jj|||dt�Std||j|��dS(NR�Rr(RFR�R�R�RRy(R�RER�R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�pscCs>t|_|jj�|_|jdk	r:|jj�n|S(N(R�RpRFR�R�R�(R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�vs
	cCs�t|t�rc||jkr�tt|�j|�|jdk	r`|jj|jd�q`q�n?tt|�j|�|jdk	r�|jj|jd�n|S(Ni����(RsR)RuRRR�RFR�(R�R	((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�}s cCs6tt|�j�|jdk	r2|jj�n|S(N(RRR�RFR�(R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��scCsV||kr"t||g��n||g}|jdk	rR|jj|�ndS(N(R$RFR�R(R�R�R((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�s
cCsA||g}|jdk	r0|jj|�n|jg�dS(N(RFR�RR(R�RRy((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�scCsuytt|�j�SWntk
r*nX|jdkrn|jdk	rnd|jjt	|j�f|_n|jS(Ns%s:(%s)(
RRR�RaRmR�RFR^R�R(R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��s
%(
R�R�R�R�R�R�R�R�R�R�RRR�(((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRZs				cBs#eZdZd�Zed�ZRS(s�
    Lookahead matching of the given parse expression.  C{FollowedBy}
    does I{not} advance the parsing position within the input string, it only
    verifies that the specified parse expression matches at the current
    position.  C{FollowedBy} always returns a null token list.

    Example::
        # use FollowedBy to match a label only if it is followed by a ':'
        data_word = Word(alphas)
        label = data_word + FollowedBy(':')
        attr_expr = Group(label + Suppress(':') + OneOrMore(data_word, stopOn=label).setParseAction(' '.join))
        
        OneOrMore(attr_expr).parseString("shape: SQUARE color: BLACK posn: upper left").pprint()
    prints::
        [['shape', 'SQUARE'], ['color', 'BLACK'], ['posn', 'upper left']]
    cCs#tt|�j|�t|_dS(N(RRR�R�Rs(R�RF((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��scCs|jj||�|gfS(N(RFR�(R�RER�R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��s(R�R�R�R�R�R�(((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�s	cBs,eZdZd�Zed�Zd�ZRS(s�
    Lookahead to disallow matching with the given parse expression.  C{NotAny}
    does I{not} advance the parsing position within the input string, it only
    verifies that the specified parse expression does I{not} match at the current
    position.  Also, C{NotAny} does I{not} skip over leading whitespace. C{NotAny}
    always returns a null token list.  May be constructed using the '~' operator.

    Example::
        
    cCsBtt|�j|�t|_t|_dt|j�|_	dS(NsFound unwanted token, (
RRR�R�RpR�RsRRFRy(R�RF((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��s		cCs:|jj||�r0t|||j|��n|gfS(N(RFR�RRy(R�RER�R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��scCsIt|d�r|jS|jdkrBdt|j�d|_n|jS(NR�s~{R�(R�R�RmR�RRF(R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��s
(R�R�R�R�R�R�R�(((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�s
	t_MultipleMatchcBs eZdd�Zed�ZRS(cCsftt|�j|�t|_|}t|t�rFtj|�}n|dk	rY|nd|_
dS(N(RR�R�R�RoRsR�R"RiR�t	not_ender(R�RFtstopOntender((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��s	cCs|jj}|j}|jdk	}|r9|jj}n|rO|||�n||||dt�\}}y�|j}	xo|r�|||�n|	r�|||�}
n|}
|||
|�\}}|s�|j�r~||7}q~q~WWnt	t
fk
rnX||fS(NR�(RFR�R�R�R�R�R�RuR�RR�(R�RER�R�tself_expr_parsetself_skip_ignorablestcheck_endert
try_not_enderR�thasIgnoreExprsR�t	tmptokens((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��s,	N(R�R�R�R�R�R�(((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��scBseZdZd�ZRS(s�
    Repetition of one or more of the given expression.
    
    Parameters:
     - expr - expression that must match one or more times
     - stopOn - (default=C{None}) - expression for a terminating sentinel
          (only required if the sentinel would ordinarily match the repetition 
          expression)          

    Example::
        data_word = Word(alphas)
        label = data_word + FollowedBy(':')
        attr_expr = Group(label + Suppress(':') + OneOrMore(data_word).setParseAction(' '.join))

        text = "shape: SQUARE posn: upper left color: BLACK"
        OneOrMore(attr_expr).parseString(text).pprint()  # Fail! read 'color' as data instead of next label -> [['shape', 'SQUARE color']]

        # use stopOn attribute for OneOrMore to avoid reading label string as part of the data
        attr_expr = Group(label + Suppress(':') + OneOrMore(data_word, stopOn=label).setParseAction(' '.join))
        OneOrMore(attr_expr).parseString(text).pprint() # Better -> [['shape', 'SQUARE'], ['posn', 'upper left'], ['color', 'BLACK']]
        
        # could also be written as
        (attr_expr * (1,)).parseString(text).pprint()
    cCsIt|d�r|jS|jdkrBdt|j�d|_n|jS(NR�R�s}...(R�R�RmR�RRF(R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�!s
(R�R�R�R�(((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRscBs/eZdZdd�Zed�Zd�ZRS(sw
    Optional repetition of zero or more of the given expression.
    
    Parameters:
     - expr - expression that must match zero or more times
     - stopOn - (default=C{None}) - expression for a terminating sentinel
          (only required if the sentinel would ordinarily match the repetition 
          expression)          

    Example: similar to L{OneOrMore}
    cCs)tt|�j|d|�t|_dS(NR�(RR0R�R�Rs(R�RFR�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�6scCsEy tt|�j|||�SWnttfk
r@|gfSXdS(N(RR0R�RR�(R�RER�R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�:s cCsIt|d�r|jS|jdkrBdt|j�d|_n|jS(NR�Rs]...(R�R�RmR�RRF(R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�@s
N(R�R�R�R�R�R�R�R�(((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR0*st
_NullTokencBs eZd�ZeZd�ZRS(cCstS(N(R�(R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�JscCsdS(NRr((R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�Ms(R�R�R�R>R�(((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�Is	cBs/eZdZed�Zed�Zd�ZRS(sa
    Optional matching of the given expression.

    Parameters:
     - expr - expression that must match zero or more times
     - default (optional) - value to be returned if the optional expression is not found.

    Example::
        # US postal code can be a 5-digit zip, plus optional 4-digit qualifier
        zip = Combine(Word(nums, exact=5) + Optional('-' + Word(nums, exact=4)))
        zip.runTests('''
            # traditional ZIP code
            12345
            
            # ZIP+4 form
            12101-0001
            
            # invalid ZIP
            98765-
            ''')
    prints::
        # traditional ZIP code
        12345
        ['12345']

        # ZIP+4 form
        12101-0001
        ['12101-0001']

        # invalid ZIP
        98765-
             ^
        FAIL: Expected end of text (at char 5), (line:1, col:6)
    cCsAtt|�j|dt�|jj|_||_t|_dS(NR(	RRR�R�RFRoRR�Rs(R�RFR�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�ts	cCs�y(|jj|||dt�\}}Wnottfk
r�|jtk	r�|jjr�t|jg�}|j||jj<q�|jg}q�g}nX||fS(NR�(	RFR�R�RR�Rt_optionalNotMatchedRnR (R�RER�R�R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�zs(
cCsIt|d�r|jS|jdkrBdt|j�d|_n|jS(NR�RR(R�R�RmR�RRF(R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��s
(R�R�R�R�R�R�R�R�(((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRQs"cBs,eZdZeddd�Zed�ZRS(s�	
    Token for skipping over all undefined text until the matched expression is found.

    Parameters:
     - expr - target expression marking the end of the data to be skipped
     - include - (default=C{False}) if True, the target expression is also parsed 
          (the skipped text and target expression are returned as a 2-element list).
     - ignore - (default=C{None}) used to define grammars (typically quoted strings and 
          comments) that might contain false matches to the target expression
     - failOn - (default=C{None}) define expressions that are not allowed to be 
          included in the skipped test; if found before the target expression is found, 
          the SkipTo is not a match

    Example::
        report = '''
            Outstanding Issues Report - 1 Jan 2000

               # | Severity | Description                               |  Days Open
            -----+----------+-------------------------------------------+-----------
             101 | Critical | Intermittent system crash                 |          6
              94 | Cosmetic | Spelling error on Login ('log|n')         |         14
              79 | Minor    | System slow when running too many reports |         47
            '''
        integer = Word(nums)
        SEP = Suppress('|')
        # use SkipTo to simply match everything up until the next SEP
        # - ignore quoted strings, so that a '|' character inside a quoted string does not match
        # - parse action will call token.strip() for each matched token, i.e., the description body
        string_data = SkipTo(SEP, ignore=quotedString)
        string_data.setParseAction(tokenMap(str.strip))
        ticket_expr = (integer("issue_num") + SEP 
                      + string_data("sev") + SEP 
                      + string_data("desc") + SEP 
                      + integer("days_open"))
        
        for tkt in ticket_expr.searchString(report):
            print tkt.dump()
    prints::
        ['101', 'Critical', 'Intermittent system crash', '6']
        - days_open: 6
        - desc: Intermittent system crash
        - issue_num: 101
        - sev: Critical
        ['94', 'Cosmetic', "Spelling error on Login ('log|n')", '14']
        - days_open: 14
        - desc: Spelling error on Login ('log|n')
        - issue_num: 94
        - sev: Cosmetic
        ['79', 'Minor', 'System slow when running too many reports', '47']
        - days_open: 47
        - desc: System slow when running too many reports
        - issue_num: 79
        - sev: Minor
    cCs�tt|�j|�||_t|_t|_||_t|_	t
|t�rgtj
|�|_n	||_dt|j�|_dS(NsNo match found for (RR&R�t
ignoreExprR�RsR�RxtincludeMatchR�RsR�R"RitfailOnRRFRy(R�R	tincludeR�R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��s						cCs�|}t|�}|j}|jj}|jdk	rB|jjnd}|jdk	rc|jjnd}	|}
x�|
|kr#|dk	r�|||
�r�Pq�n|	dk	r�x/y|	||
�}
Wq�tk
r�Pq�Xq�Wny|||
dt	dt	�Wn!t
tfk
r|
d7}
qrXPqrWt
|||j|��|
}|||!}t
|�}|jr�||||dt	�\}}
||
7}n||fS(NR�R�i(R�RFR�R�R�R�R�R�RR�RR�RyR R�(R�RER�R�RHR�RFt
expr_parsetself_failOn_canParseNexttself_ignoreExpr_tryParsettmploctskiptextt
skipresultR:((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��s<	!!

	
N(R�R�R�R�R�R�R�R�(((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR&�s6
cBs\eZdZd	d�Zd�Zd�Zd�Zd�Zgd�Z	d�Z
d�ZRS(
sK
    Forward declaration of an expression to be defined later -
    used for recursive grammars, such as algebraic infix notation.
    When the expression is known, it is assigned to the C{Forward} variable using the '<<' operator.

    Note: take care when assigning to C{Forward} not to overlook precedence of operators.
    Specifically, '|' has a lower precedence than '<<', so that::
        fwdExpr << a | b | c
    will actually be evaluated as::
        (fwdExpr << a) | b | c
    thereby leaving b and c out as parseable alternatives.  It is recommended that you
    explicitly group the values inserted into the C{Forward}::
        fwdExpr << (a | b | c)
    Converting to use the '<<=' operator instead will avoid this problem.

    See L{ParseResults.pprint} for an example of a recursive parser created using
    C{Forward}.
    cCs tt|�j|dt�dS(NR(RR
R�R�(R�R	((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�scCs�t|t�r!tj|�}n||_d|_|jj|_|jj|_|j	|jj
�|jj|_|jj|_|j
j|jj
�|S(N(RsR�R"RiRFR�RmRxRsR�RqRpRoRuR(R�R	((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt
__lshift__s		cCs||>S(N((R�R	((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt__ilshift__'scCs
t|_|S(N(R�Rp(R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�*s	cCs8|js4t|_|jdk	r4|jj�q4n|S(N(RwR�RFR�R�(R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�.s
		cCsP||kr?||g}|jdk	r?|jj|�q?n|jg�dS(N(RFR�RR(R�RRy((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR5s
cCs�t|d�r|jS|jjdS|j|_t|_z+|jdk	r]t|j�}nd}Wd|j|_X|jjd|S(NR�s: ...R�s: (	R�R�R^R�t_revertClasst_ForwardNoRecurseRFR�R(R�t	retString((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�<s	

cCs=|jdk	r"tt|�j�St�}||K}|SdS(N(RFR�RR
R�(R�R}((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�Ms
	
N(R�R�R�R�R�R�R�R�R�RR�R�(((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR
s	
				R�cBseZd�ZRS(cCsdS(Ns...((R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�Vs(R�R�R�(((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�UscBseZdZed�ZRS(sQ
    Abstract subclass of C{ParseExpression}, for converting parsed results.
    cCs#tt|�j|�t|_dS(N(RR+R�R�Ro(R�RFR((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�]s(R�R�R�R�R�(((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR+YscBs/eZdZded�Zd�Zd�ZRS(s�
    Converter to concatenate all matching tokens to a single string.
    By default, the matching patterns must also be contiguous in the input string;
    this can be disabled by specifying C{'adjacent=False'} in the constructor.

    Example::
        real = Word(nums) + '.' + Word(nums)
        print(real.parseString('3.1416')) # -> ['3', '.', '1416']
        # will also erroneously match the following
        print(real.parseString('3. 1416')) # -> ['3', '.', '1416']

        real = Combine(Word(nums) + '.' + Word(nums))
        print(real.parseString('3.1416')) # -> ['3.1416']
        # no match when there are internal spaces
        print(real.parseString('3. 1416')) # -> Exception: Expected W:(0123...)
    RrcCsQtt|�j|�|r)|j�n||_t|_||_t|_dS(N(	RRR�R�tadjacentR�Rpt
joinStringR}(R�RFR�R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�rs
			cCs6|jrtj||�ntt|�j|�|S(N(R�R"R�RR(R�R	((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�|s	cCse|j�}|2|tdj|j|j��gd|j�7}|jr]|j�r]|gS|SdS(NRrR�(R�R R�RR�RzRnR�(R�RER�R�tretToks((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��s1(R�R�R�R�R�R�R�(((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRas
	cBs eZdZd�Zd�ZRS(s�
    Converter to return the matched tokens as a list - useful for returning tokens of C{L{ZeroOrMore}} and C{L{OneOrMore}} expressions.

    Example::
        ident = Word(alphas)
        num = Word(nums)
        term = ident | num
        func = ident + Optional(delimitedList(term))
        print(func.parseString("fn a,b,100"))  # -> ['fn', 'a', 'b', '100']

        func = ident + Group(Optional(delimitedList(term)))
        print(func.parseString("fn a,b,100"))  # -> ['fn', ['a', 'b', '100']]
    cCs#tt|�j|�t|_dS(N(RRR�R�Ro(R�RF((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��scCs|gS(N((R�RER�R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��s(R�R�R�R�R�(((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�s
	cBs eZdZd�Zd�ZRS(sW
    Converter to return a repetitive expression as a list, but also as a dictionary.
    Each element can also be referenced using the first token in the expression as its key.
    Useful for tabular report scraping when the first column can be used as a item key.

    Example::
        data_word = Word(alphas)
        label = data_word + FollowedBy(':')
        attr_expr = Group(label + Suppress(':') + OneOrMore(data_word).setParseAction(' '.join))

        text = "shape: SQUARE posn: upper left color: light blue texture: burlap"
        attr_expr = (label + Suppress(':') + OneOrMore(data_word, stopOn=label).setParseAction(' '.join))
        
        # print attributes as plain groups
        print(OneOrMore(attr_expr).parseString(text).dump())
        
        # instead of OneOrMore(expr), parse using Dict(OneOrMore(Group(expr))) - Dict will auto-assign names
        result = Dict(OneOrMore(Group(attr_expr))).parseString(text)
        print(result.dump())
        
        # access named fields as dict entries, or output as dict
        print(result['shape'])        
        print(result.asDict())
    prints::
        ['shape', 'SQUARE', 'posn', 'upper left', 'color', 'light blue', 'texture', 'burlap']

        [['shape', 'SQUARE'], ['posn', 'upper left'], ['color', 'light blue'], ['texture', 'burlap']]
        - color: light blue
        - posn: upper left
        - shape: SQUARE
        - texture: burlap
        SQUARE
        {'color': 'light blue', 'posn': 'upper left', 'texture': 'burlap', 'shape': 'SQUARE'}
    See more examples at L{ParseResults} of accessing fields by results name.
    cCs#tt|�j|�t|_dS(N(RR	R�R�Ro(R�RF((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��scCsTx9t|�D]+\}}t|�dkr1q
n|d}t|t�rct|d�j�}nt|�dkr�td|�||<q
t|�dkr�t|dt�r�t|d|�||<q
|j�}|d=t|�dkst|t�r!|j	�r!t||�||<q
t|d|�||<q
W|j
rL|gS|SdS(NiiRri(R�R�RsRoRR�R�R R�R�Rn(R�RER�R�R�ttoktikeyt	dictvalue((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��s$
&-	(R�R�R�R�R�(((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR	�s#	cBs eZdZd�Zd�ZRS(sV
    Converter for ignoring the results of a parsed expression.

    Example::
        source = "a, b, c,d"
        wd = Word(alphas)
        wd_list1 = wd + ZeroOrMore(',' + wd)
        print(wd_list1.parseString(source))

        # often, delimiters that are useful during parsing are just in the
        # way afterward - use Suppress to keep them out of the parsed output
        wd_list2 = wd + ZeroOrMore(Suppress(',') + wd)
        print(wd_list2.parseString(source))
    prints::
        ['a', ',', 'b', ',', 'c', ',', 'd']
        ['a', 'b', 'c', 'd']
    (See also L{delimitedList}.)
    cCsgS(N((R�RER�R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��scCs|S(N((R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��s(R�R�R�R�R�(((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR)�s	cBs)eZdZd�Zd�Zd�ZRS(sI
    Wrapper for parse actions, to ensure they are only called once.
    cCst|�|_t|_dS(N(RetcallableR�tcalled(R�t
methodCall((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�scCsA|js+|j|||�}t|_|St||d��dS(NRr(R�R�R�R(R�R�RNRpR;((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�s
		cCs
t|_dS(N(R�R�(R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pytreset
s(R�R�R�R�R�R�(((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�s		csCt����fd�}y�j|_Wntk
r>nX|S(ss
    Decorator for debugging parse actions. 
    
    When the parse action is called, this decorator will print C{">> entering I{method-name}(line:I{current_source_line}, I{parse_location}, I{matched_tokens})".}
    When the parse action completes, the decorator will print C{"<<"} followed by the returned value, or any exception that the parse action raised.

    Example::
        wd = Word(alphas)

        @traceParseAction
        def remove_duplicate_chars(tokens):
            return ''.join(sorted(set(''.join(tokens)))

        wds = OneOrMore(wd).setParseAction(remove_duplicate_chars)
        print(wds.parseString("slkdjs sld sldd sdlf sdljf"))
    prints::
        >>entering remove_duplicate_chars(line: 'slkdjs sld sldd sdlf sdljf', 0, (['slkdjs', 'sld', 'sldd', 'sdlf', 'sdljf'], {}))
        <<leaving remove_duplicate_chars (ret: 'dfjkls')
        ['dfjkls']
    cs��j}|d\}}}t|�dkrI|djjd|}ntjjd|t||�||f�y�|�}Wn0tk
r�}tjjd||f��nXtjjd||f�|S(Ni����iit.s">>entering %s(line: '%s', %d, %r)
s<<leaving %s (exception: %s)
s<<leaving %s (ret: %r)
(R�R�R^RxtstderrtwriteRERa(tpaArgstthisFuncR�RNRpR}RL(R(s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pytz#s	)(ReR�R�(RR�((Rs@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR`
s

t,cCsxt|�dt|�dt|�d}|rSt|t||��j|�S|tt|�|�j|�SdS(s�
    Helper to define a delimited list of expressions - the delimiter defaults to ','.
    By default, the list elements and delimiters can have intervening whitespace, and
    comments, but this can be overridden by passing C{combine=True} in the constructor.
    If C{combine} is set to C{True}, the matching tokens are returned as a single token
    string, with the delimiters included; otherwise, the matching tokens are returned
    as a list of tokens, with the delimiters suppressed.

    Example::
        delimitedList(Word(alphas)).parseString("aa,bb,cc") # -> ['aa', 'bb', 'cc']
        delimitedList(Word(hexnums), delim=':', combine=True).parseString("AA:BB:CC:DD:EE") # -> ['AA:BB:CC:DD:EE']
    s [Rs]...N(RRR0R�R)(RFtdelimtcombinetdlName((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR>9s
,!cs�t����fd�}|dkrBtt�jd��}n|j�}|jd�|j|dt�|�jdt	��d�S(s:
    Helper to define a counted list of expressions.
    This helper defines a pattern of the form::
        integer expr expr expr...
    where the leading integer tells how many expr expressions follow.
    The matched tokens returns the array of expr tokens as a list - the leading count token is suppressed.
    
    If C{intExpr} is specified, it should be a pyparsing expression that produces an integer value.

    Example::
        countedArray(Word(alphas)).parseString('2 ab cd ef')  # -> ['ab', 'cd']

        # in this parser, the leading integer value is given in binary,
        # '10' indicating that 2 values are in the array
        binaryConstant = Word('01').setParseAction(lambda t: int(t[0], 2))
        countedArray(Word(alphas), intExpr=binaryConstant).parseString('10 ab cd ef')  # -> ['ab', 'cd']
    cs;|d}�|r,tt�g|��p5tt�>gS(Ni(RRRA(R�RNRpR�(t	arrayExprRF(s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pytcountFieldParseAction_s
-cSst|d�S(Ni(Ro(Rp((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRqdRrtarrayLenR~s(len) s...N(
R
R�R-RPRzR�R�R�R�R(RFtintExprR�((R�RFs@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR:Ls	
cCsMg}x@|D]8}t|t�r8|jt|��q
|j|�q
W|S(N(RsR�RR�R(tLR}R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�ks
csFt���fd�}|j|dt��jdt|���S(s*
    Helper to define an expression that is indirectly defined from
    the tokens matched in a previous expression, that is, it looks
    for a 'repeat' of a previous expression.  For example::
        first = Word(nums)
        second = matchPreviousLiteral(first)
        matchExpr = first + ":" + second
    will match C{"1:1"}, but not C{"1:2"}.  Because this matches a
    previous literal, will also match the leading C{"1:1"} in C{"1:10"}.
    If this is not desired, use C{matchPreviousExpr}.
    Do I{not} use with packrat parsing enabled.
    csc|rTt|�dkr'�|d>q_t|j��}�td�|D��>n�t�>dS(Niicss|]}t|�VqdS(N(R(R�ttt((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pys	<genexpr>�s(R�R�R�RR(R�RNRpttflat(trep(s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pytcopyTokenToRepeater�sR~s(prev) (R
R�R�R�R(RFR�((R�s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRMts

	
cs\t��|j�}�|K��fd�}|j|dt��jdt|���S(sS
    Helper to define an expression that is indirectly defined from
    the tokens matched in a previous expression, that is, it looks
    for a 'repeat' of a previous expression.  For example::
        first = Word(nums)
        second = matchPreviousExpr(first)
        matchExpr = first + ":" + second
    will match C{"1:1"}, but not C{"1:2"}.  Because this matches by
    expressions, will I{not} match the leading C{"1:1"} in C{"1:10"};
    the expressions are evaluated first, and then compared, so
    C{"1"} is compared with C{"10"}.
    Do I{not} use with packrat parsing enabled.
    cs8t|j����fd�}�j|dt�dS(Ncs7t|j��}|�kr3tddd��ndS(NRri(R�R�R(R�RNRpttheseTokens(tmatchTokens(s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pytmustMatchTheseTokens�sR~(R�R�RzR�(R�RNRpR�(R�(R�s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��sR~s(prev) (R
R�R�R�R�R(RFte2R�((R�s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRL�s	
cCsUx$dD]}|j|t|�}qW|jdd�}|jdd�}t|�S(Ns\^-]s
s\ns	s\t(R�t_bslashR(R�R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRE�s

c
sD|r!d�}d�}t�nd�}d�}t�g}t|t�r]|j�}n7t|tj�r~t|�}ntj	dt
dd�|s�t�Sd}x�|t|�d	krV||}x�t
||d	�D]f\}}	||	|�r
|||d	=Pq�|||	�r�|||d	=|j||	�|	}Pq�q�W|d	7}q�W|r|ry�t|�td
j|��kr�tdd
jd�|D���jd
j|��Stdjd�|D���jd
j|��SWqtk
rtj	dt
dd�qXnt�fd�|D��jd
j|��S(s�
    Helper to quickly define a set of alternative Literals, and makes sure to do
    longest-first testing when there is a conflict, regardless of the input order,
    but returns a C{L{MatchFirst}} for best performance.

    Parameters:
     - strs - a string of space-delimited literals, or a collection of string literals
     - caseless - (default=C{False}) - treat all literals as caseless
     - useRegex - (default=C{True}) - as an optimization, will generate a Regex
          object; otherwise, will generate a C{MatchFirst} object (if C{caseless=True}, or
          if creating a C{Regex} raises an exception)

    Example::
        comp_oper = oneOf("< = > <= >= !=")
        var = Word(alphas)
        number = Word(nums)
        term = var | number
        comparison_expr = term + comp_oper + term
        print(comparison_expr.searchString("B = 12  AA=23 B<=AA AA>12"))
    prints::
        [['B', '=', '12'], ['AA', '=', '23'], ['B', '<=', 'AA'], ['AA', '>', '12']]
    cSs|j�|j�kS(N(R,(Rtb((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRq�RrcSs|j�j|j��S(N(R,R)(RR�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRq�RrcSs
||kS(N((RR�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRq�RrcSs
|j|�S(N(R)(RR�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRq�Rrs6Invalid argument to oneOf, expected string or iterableR�iiiRrs[%s]css|]}t|�VqdS(N(RE(R�tsym((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pys	<genexpr>�ss | t|css|]}tj|�VqdS(N(R|RG(R�R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pys	<genexpr>�ss7Exception creating Regex for oneOf, building MatchFirstc3s|]}�|�VqdS(N((R�R�(tparseElementClass(s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pys	<genexpr>�s(RRRsR�R�R�RwR�R�R�R�RR�R�RR�R%R�RaR(
tstrsR+tuseRegextisequaltmaskstsymbolsR�tcurR�R	((R�s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRQ�sL						

!
!33
	cCsttt||���S(s�
    Helper to easily and clearly define a dictionary by specifying the respective patterns
    for the key and value.  Takes care of defining the C{L{Dict}}, C{L{ZeroOrMore}}, and C{L{Group}} tokens
    in the proper order.  The key pattern can include delimiting markers or punctuation,
    as long as they are suppressed, thereby leaving the significant key text.  The value
    pattern can include named results, so that the C{Dict} results can include named token
    fields.

    Example::
        text = "shape: SQUARE posn: upper left color: light blue texture: burlap"
        attr_expr = (label + Suppress(':') + OneOrMore(data_word, stopOn=label).setParseAction(' '.join))
        print(OneOrMore(attr_expr).parseString(text).dump())
        
        attr_label = label
        attr_value = Suppress(':') + OneOrMore(data_word, stopOn=label).setParseAction(' '.join)

        # similar to Dict, but simpler call format
        result = dictOf(attr_label, attr_value).parseString(text)
        print(result.dump())
        print(result['shape'])
        print(result.shape)  # object attribute access works too
        print(result.asDict())
    prints::
        [['shape', 'SQUARE'], ['posn', 'upper left'], ['color', 'light blue'], ['texture', 'burlap']]
        - color: light blue
        - posn: upper left
        - shape: SQUARE
        - texture: burlap
        SQUARE
        SQUARE
        {'color': 'light blue', 'shape': 'SQUARE', 'posn': 'upper left', 'texture': 'burlap'}
    (R	R0R(RR�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR?�s!cCs|t�jd��}|j�}t|_|d�||d�}|rVd�}n	d�}|j|�|j|_|S(s�
    Helper to return the original, untokenized text for a given expression.  Useful to
    restore the parsed fields of an HTML start tag into the raw tag text itself, or to
    revert separate tokens with intervening whitespace back to the original matching
    input text. By default, returns astring containing the original parsed text.  
       
    If the optional C{asString} argument is passed as C{False}, then the return value is a 
    C{L{ParseResults}} containing any results names that were originally matched, and a 
    single token containing the original matched text from the input string.  So if 
    the expression passed to C{L{originalTextFor}} contains expressions with defined
    results names, you must set C{asString} to C{False} if you want to preserve those
    results name values.

    Example::
        src = "this is test <b> bold <i>text</i> </b> normal text "
        for tag in ("b","i"):
            opener,closer = makeHTMLTags(tag)
            patt = originalTextFor(opener + SkipTo(closer) + closer)
            print(patt.searchString(src)[0])
    prints::
        ['<b> bold <i>text</i> </b>']
        ['<i>text</i>']
    cSs|S(N((R�R�Rp((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRq8Rrt_original_startt
_original_endcSs||j|j!S(N(R�R�(R�RNRp((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRq=RrcSs'||jd�|jd�!g|(dS(NR�R�(R�(R�RNRp((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pytextractText?s(RRzR�R�R}Ru(RFtasStringt	locMarkertendlocMarkert	matchExprR�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRe s		
cCst|�jd��S(sp
    Helper to undo pyparsing's default grouping of And expressions, even
    if all but one are non-empty.
    cSs|dS(Ni((Rp((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRqJRr(R+Rz(RF((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRfEscCsEt�jd��}t|d�|d�|j�j�d��S(s�
    Helper to decorate a returned token with its starting and ending locations in the input string.
    This helper adds the following results names:
     - locn_start = location where matched expression begins
     - locn_end = location where matched expression ends
     - value = the actual parsed results

    Be careful if the input text contains C{<TAB>} characters, you may want to call
    C{L{ParserElement.parseWithTabs}}

    Example::
        wd = Word(alphas)
        for match in locatedExpr(wd).searchString("ljsdf123lksdjjf123lkkjj1222"):
            print(match)
    prints::
        [[0, 'ljsdf', 5]]
        [[8, 'lksdjjf', 15]]
        [[18, 'lkkjj', 23]]
    cSs|S(N((R�RNRp((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRq`Rrt
locn_startR�tlocn_end(RRzRR�R�(RFtlocator((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRhLss\[]-*.$+^?()~ RKcCs|ddS(Nii((R�RNRp((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRqkRrs\\0?[xX][0-9a-fA-F]+cCs tt|djd�d��S(Nis\0xi(tunichrRotlstrip(R�RNRp((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRqlRrs	\\0[0-7]+cCstt|ddd��S(Niii(R�Ro(R�RNRp((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRqmRrR<s\]s\wRzRRtnegatetbodyRcsOd��y-dj�fd�tj|�jD��SWntk
rJdSXdS(s�
    Helper to easily define string ranges for use in Word construction.  Borrows
    syntax from regexp '[]' string range definitions::
        srange("[0-9]")   -> "0123456789"
        srange("[a-z]")   -> "abcdefghijklmnopqrstuvwxyz"
        srange("[a-z$_]") -> "abcdefghijklmnopqrstuvwxyz$_"
    The input string must be enclosed in []'s, and the returned string is the expanded
    character set joined into a single string.
    The values enclosed in the []'s may be:
     - a single character
     - an escaped character with a leading backslash (such as C{\-} or C{\]})
     - an escaped hex character with a leading C{'\x'} (C{\x21}, which is a C{'!'} character) 
         (C{\0x##} is also supported for backwards compatibility) 
     - an escaped octal character with a leading C{'\0'} (C{\041}, which is a C{'!'} character)
     - a range of any of the above, separated by a dash (C{'a-z'}, etc.)
     - any combination of the above (C{'aeiouy'}, C{'a-zA-Z0-9_$'}, etc.)
    cSsKt|t�s|Sdjd�tt|d�t|d�d�D��S(NRrcss|]}t|�VqdS(N(R�(R�R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pys	<genexpr>�sii(RsR R�R�tord(tp((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRq�RrRrc3s|]}�|�VqdS(N((R�tpart(t	_expanded(s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pys	<genexpr>�sN(R�t_reBracketExprR�R�Ra(R�((R�s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR]rs
	-
cs�fd�}|S(st
    Helper method for defining parse actions that require matching at a specific
    column in the input text.
    cs2t||��kr.t||d���ndS(Nsmatched token not at column %d(R7R(R@tlocnRJ(R�(s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt	verifyCol�s((R�R�((R�s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRK�scs
�fd�S(s�
    Helper method for common parse actions that simply return a literal value.  Especially
    useful when used with C{L{transformString<ParserElement.transformString>}()}.

    Example::
        num = Word(nums).setParseAction(lambda toks: int(toks[0]))
        na = oneOf("N/A NA").setParseAction(replaceWith(math.nan))
        term = na | num
        
        OneOrMore(term).parseString("324 234 N/A 234") # -> [324, 234, nan, 234]
    cs�gS(N((R�RNRp(treplStr(s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRq�Rr((R�((R�s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRZ�scCs|ddd!S(s
    Helper parse action for removing quotation marks from parsed quoted strings.

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

        # use removeQuotes to strip quotation marks from parsed results
        quotedString.setParseAction(removeQuotes)
        quotedString.parseString("'Now is the Winter of our Discontent'") # -> ["Now is the Winter of our Discontent"]
    iii����((R�RNRp((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRX�scsa��fd�}y"t�dt�d�j�}Wntk
rSt��}nX||_|S(sG
    Helper to define a parse action by mapping a function to all elements of a ParseResults list.If any additional 
    args are passed, they are forwarded to the given function as additional arguments after
    the token, as in C{hex_integer = Word(hexnums).setParseAction(tokenMap(int, 16))}, which will convert the
    parsed data to an integer using base 16.

    Example (compare the last to example in L{ParserElement.transformString}::
        hex_ints = OneOrMore(Word(hexnums)).setParseAction(tokenMap(int, 16))
        hex_ints.runTests('''
            00 11 22 aa FF 0a 0d 1a
            ''')
        
        upperword = Word(alphas).setParseAction(tokenMap(str.upper))
        OneOrMore(upperword).runTests('''
            my kingdom for a horse
            ''')

        wd = Word(alphas).setParseAction(tokenMap(str.title))
        OneOrMore(wd).setParseAction(' '.join).runTests('''
            now is the winter of our discontent made glorious summer by this sun of york
            ''')
    prints::
        00 11 22 aa FF 0a 0d 1a
        [0, 17, 34, 170, 255, 10, 13, 26]

        my kingdom for a horse
        ['MY', 'KINGDOM', 'FOR', 'A', 'HORSE']

        now is the winter of our discontent made glorious summer by this sun of york
        ['Now Is The Winter Of Our Discontent Made Glorious Summer By This Sun Of York']
    cs g|D]}�|��^qS(N((R�RNRpttokn(R�RO(s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR��sR�R^(R`R�RaRu(ROR�R�Rd((R�ROs@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRk�s 	
	cCst|�j�S(N(RR,(Rp((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRq�RrcCst|�j�S(N(Rtlower(Rp((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRq�RrcCs<t|t�r+|}t|d|�}n	|j}tttd�}|r�tj�j	t
�}td�|d�tt
t|td�|���tddtg�jd�j	d	��td
�}n�djd�tD��}tj�j	t
�t|�B}td�|d�tt
t|j	t�ttd�|����tddtg�jd�j	d
��td
�}ttd�|d
�}|jddj|jdd�j�j���jd|�}|jddj|jdd�j�j���jd|�}||_||_||fS(sRInternal helper to construct opening and closing tag expressions, given a tag nameR+s_-:Rttagt=t/R�RAcSs|ddkS(NiR�((R�RNRp((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRq�RrR Rrcss!|]}|dkr|VqdS(R N((R�R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pys	<genexpr>�scSs|ddkS(NiR�((R�RNRp((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRq�Rrs</R5t:Rs<%s>RLs</%s>(RsR�RR�R-R2R1R<R�RzRXR)R	R0RRR�R�R�RTRWR@Rt_LR�ttitleR�R�R�(ttagStrtxmltresnamettagAttrNamettagAttrValuetopenTagtprintablesLessRAbracktcloseTag((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt	_makeTags�s"	o{AA		cCs
t|t�S(s 
    Helper to construct opening and closing tag expressions for HTML, given a tag name. Matches
    tags in either upper or lower case, attributes with namespaces and with quoted or unquoted values.

    Example::
        text = '<td>More info at the <a href="http://pyparsing.wikispaces.com">pyparsing</a> wiki page</td>'
        # makeHTMLTags returns pyparsing expressions for the opening and closing tags as a 2-tuple
        a,a_end = makeHTMLTags("A")
        link_expr = a + SkipTo(a_end)("link_text") + a_end
        
        for link in link_expr.searchString(text):
            # attributes in the <A> tag (like "href" shown here) are also accessible as named results
            print(link.link_text, '->', link.href)
    prints::
        pyparsing -> http://pyparsing.wikispaces.com
    (RR�(R((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRI�scCs
t|t�S(s�
    Helper to construct opening and closing tag expressions for XML, given a tag name. Matches
    tags only in the given upper/lower case.

    Example: similar to L{makeHTMLTags}
    (RR�(R((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRJscsT|r|�n|j��g�D]\}}||f^q#��fd�}|S(s<
    Helper to create a validating parse action to be used with start tags created
    with C{L{makeXMLTags}} or C{L{makeHTMLTags}}. Use C{withAttribute} to qualify a starting tag
    with a required attribute value, to avoid false matches on common tags such as
    C{<TD>} or C{<DIV>}.

    Call C{withAttribute} with a series of attribute names and values. Specify the list
    of filter attributes names and values as:
     - keyword arguments, as in C{(align="right")}, or
     - as an explicit dict with C{**} operator, when an attribute name is also a Python
          reserved word, as in C{**{"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 C{class} (with or without a namespace), use C{L{withClass}}.

    To verify that the attribute exists, but without specifying a value, pass
    C{withAttribute.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 = makeHTMLTags("div")

        # only match div tag having a type attribute with value "grid"
        div_grid = div().setParseAction(withAttribute(type="grid"))
        grid_expr = div_grid + SkipTo(div | div_end)("body")
        for grid_header in grid_expr.searchString(html):
            print(grid_header.body)
        
        # construct a match with any div tag having a type attribute, regardless of the value
        div_any_type = div().setParseAction(withAttribute(type=withAttribute.ANY_VALUE))
        div_expr = div_any_type + SkipTo(div | div_end)("body")
        for div_header in div_expr.searchString(html):
            print(div_header.body)
    prints::
        1 4 0 1 0

        1 4 0 1 0
        1,3 2,3 1,1
    cs�x~�D]v\}}||kr8t||d|��n|tjkr|||krt||d||||f��qqWdS(Nsno matching attribute s+attribute '%s' has value '%s', must be '%s'(RRct	ANY_VALUE(R�RNR�tattrNamet	attrValue(tattrs(s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyR�Rs(R�(R�tattrDictR�R�R�((Rs@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRcs2
%cCs'|rd|nd}ti||6�S(s�
    Simplified version of C{L{withAttribute}} when matching on a div class - made
    difficult because C{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 = makeHTMLTags("div")
        div_grid = div().setParseAction(withClass("grid"))
        
        grid_expr = div_grid + SkipTo(div | div_end)("body")
        for grid_header in grid_expr.searchString(html):
            print(grid_header.body)
        
        div_any_type = div().setParseAction(withClass(withAttribute.ANY_VALUE))
        div_expr = div_any_type + SkipTo(div | div_end)("body")
        for div_header in div_expr.searchString(html):
            print(div_header.body)
    prints::
        1 4 0 1 0

        1 4 0 1 0
        1,3 2,3 1,1
    s%s:classtclass(Rc(t	classnamet	namespacet	classattr((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRi\s t(RYcCs<t�}||||B}xt|�D]\}}|dd \}}	}
}|	dkrdd|nd|}|	dkr�|d
ks�t|�dkr�td��n|\}
}nt�j|�}|
tjkr�|	dkr
t||�t	|t
|��}q�|	dkrx|d
k	rQt|||�t	|t
||��}q�t||�t	|t
|��}q�|	dkr�t||
|||�t	||
|||�}q�td��n+|
tjkr�|	dkr)t|t
�st
|�}nt|j|�t	||�}q�|	dkr�|d
k	rpt|||�t	|t
||��}q�t||�t	|t
|��}q�|	dkr�t||
|||�t	||
|||�}q�td��ntd	��|r
|j|�n||j|�|BK}|}q(W||K}|S(s�	
    Helper method for constructing grammars of expressions made up of
    operators working in a precedence hierarchy.  Operators may be unary or
    binary, left- or right-associative.  Parse actions can also be attached
    to operator expressions. The generated parser will also recognize the use 
    of parentheses to override operator precedences (see example below).
    
    Note: if you define a deep operator list, you may see performance issues
    when using infixNotation. See L{ParserElement.enablePackrat} for a
    mechanism to potentially improve your parser performance.

    Parameters:
     - baseExpr - expression representing the most basic element for the nested
     - opList - list of tuples, one for each operator precedence level in the
      expression grammar; each tuple is of the form
      (opExpr, numTerms, rightLeftAssoc, parseAction), where:
       - opExpr is the pyparsing expression for the operator;
          may also be a string, which will be converted to a Literal;
          if numTerms is 3, opExpr is a tuple of two expressions, for the
          two operators separating the 3 terms
       - numTerms is the number of terms for this operator (must
          be 1, 2, or 3)
       - rightLeftAssoc is the indicator whether the operator is
          right or left associative, using the pyparsing-defined
          constants C{opAssoc.RIGHT} and C{opAssoc.LEFT}.
       - parseAction is the parse action to be associated with
          expressions matching this operator expression (the
          parse action tuple member may be omitted)
     - lpar - expression for matching left-parentheses (default=C{Suppress('(')})
     - rpar - expression for matching right-parentheses (default=C{Suppress(')')})

    Example::
        # simple example of four-function arithmetic with ints and variable names
        integer = pyparsing_common.signed_integer
        varname = pyparsing_common.identifier 
        
        arith_expr = infixNotation(integer | varname,
            [
            ('-', 1, opAssoc.RIGHT),
            (oneOf('* /'), 2, opAssoc.LEFT),
            (oneOf('+ -'), 2, opAssoc.LEFT),
            ])
        
        arith_expr.runTests('''
            5+3*6
            (5+3)*6
            -2--11
            ''', fullDump=False)
    prints::
        5+3*6
        [[5, '+', [3, '*', 6]]]

        (5+3)*6
        [[[5, '+', 3], '*', 6]]

        -2--11
        [[['-', 2], '-', ['-', 11]]]
    iis%s terms	%s%s termis@if numterms=3, opExpr must be a tuple or list of two expressionsis6operator must be unary (1), binary (2), or ternary (3)s2operator must indicate right or left associativityN(N(R
R�R�R�R�R�RRtLEFTRRRtRIGHTRsRRFRz(tbaseExprtopListtlpartrparR}tlastExprR�toperDeftopExprtaritytrightLeftAssocR�ttermNametopExpr1topExpr2tthisExprR�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRg�sR;	 '/' $/' 

s4"(?:[^"\n\r\\]|(?:"")|(?:\\(?:[^x]|x[0-9a-fA-F]+)))*t"s string enclosed in double quotess4'(?:[^'\n\r\\]|(?:'')|(?:\\(?:[^x]|x[0-9a-fA-F]+)))*t's string enclosed in single quotess*quotedString using single or double quotestusunicode string literalcCs!||krtd��n|d
kr�t|t�rt|t�rt|�dkr�t|�dkr�|d
k	r�tt|t||tj	dd���j
d��}q|tj�t||tj	�j
d��}q�|d
k	r9tt|t
|�t
|�ttj	dd���j
d��}q�ttt
|�t
|�ttj	dd���j
d��}q�td��nt�}|d
k	r�|tt|�t||B|B�t|��K}n.|tt|�t||B�t|��K}|jd	||f�|S(s~	
    Helper method for defining nested lists enclosed in opening and closing
    delimiters ("(" and ")" are the default).

    Parameters:
     - opener - opening character for a nested list (default=C{"("}); can also be a pyparsing expression
     - closer - closing character for a nested list (default=C{")"}); can also be a pyparsing expression
     - content - expression for items within the nested lists (default=C{None})
     - ignoreExpr - expression for ignoring opening and closing delimiters (default=C{quotedString})

    If an expression is not provided for the content argument, the nested
    expression will capture all whitespace-delimited content between delimiters
    as a list of separate values.

    Use the C{ignoreExpr} argument to define expressions that may contain
    opening or closing characters that should not be treated as opening
    or closing characters for nesting, such as quotedString or a comment
    expression.  Specify multiple expressions using an C{L{Or}} or C{L{MatchFirst}}.
    The default is L{quotedString}, but if no expressions are to be ignored,
    then pass C{None} for this argument.

    Example::
        data_type = oneOf("void int short long char float double")
        decl_data_type = Combine(data_type + Optional(Word('*')))
        ident = Word(alphas+'_', alphanums+'_')
        number = pyparsing_common.number
        arg = Group(decl_data_type + ident)
        LPAR,RPAR = map(Suppress, "()")

        code_body = nestedExpr('{', '}', ignoreExpr=(quotedString | cStyleComment))

        c_function = (decl_data_type("type") 
                      + ident("name")
                      + LPAR + Optional(delimitedList(arg), [])("args") + RPAR 
                      + code_body("body"))
        c_function.ignore(cStyleComment)
        
        source_code = '''
            int is_odd(int x) { 
                return (x%2); 
            }
                
            int dec_to_hex(char hchar) { 
                if (hchar >= '0' && hchar <= '9') { 
                    return (ord(hchar)-ord('0')); 
                } else { 
                    return (10+ord(hchar)-ord('A'));
                } 
            }
        '''
        for func in c_function.searchString(source_code):
            print("%(name)s (%(type)s) args: %(args)s" % func)

    prints::
        is_odd (int) args: [['int', 'x']]
        dec_to_hex (int) args: [['char', 'hchar']]
    s.opening and closing strings cannot be the sameiRKcSs|dj�S(Ni(R�(Rp((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRq9RrcSs|dj�S(Ni(R�(Rp((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRq<RrcSs|dj�S(Ni(R�(Rp((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRqBRrcSs|dj�S(Ni(R�(Rp((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRqFRrsOopening and closing arguments must be strings if no content expression is givensnested %s%s expressionN(R�R�RsR�R�RRRR"RfRzRAR�RR
RR)R0R�(topenertclosertcontentR�R}((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRN�s4:$
$ 	5.cs5�fd�}�fd�}�fd�}tt�jd�j��}t�t�j|�jd�}t�j|�jd�}t�j|�jd�}	|r�tt|�|t|t|�t|��|	�}
n0tt|�t|t|�t|���}
|j	t
t��|
jd�S(	s
	
    Helper method for defining space-delimited indentation blocks, such as
    those used to define block statements in Python source code.

    Parameters:
     - blockStatementExpr - expression defining syntax of statement that
            is repeated within the indented block
     - indentStack - list created by caller to manage indentation stack
            (multiple statementWithIndentedBlock expressions within a single grammar
            should share a common indentStack)
     - indent - boolean indicating whether block must be indented beyond the
            the current level; set to False for block of left-most statements
            (default=C{True})

    A valid block must contain at least one C{blockStatement}.

    Example::
        data = '''
        def A(z):
          A1
          B = 100
          G = A2
          A2
          A3
        B
        def BB(a,b,c):
          BB1
          def BBA():
            bba1
            bba2
            bba3
        C
        D
        def spam(x,y):
             def eggs(z):
                 pass
        '''


        indentStack = [1]
        stmt = Forward()

        identifier = Word(alphas, alphanums)
        funcDecl = ("def" + identifier + Group( "(" + Optional( delimitedList(identifier) ) + ")" ) + ":")
        func_body = indentedBlock(stmt, indentStack)
        funcDef = Group( funcDecl + func_body )

        rvalue = Forward()
        funcCall = Group(identifier + "(" + Optional(delimitedList(rvalue)) + ")")
        rvalue << (funcCall | identifier | Word(nums))
        assignment = Group(identifier + "=" + rvalue)
        stmt << ( funcDef | assignment | identifier )

        module_body = OneOrMore(stmt)

        parseTree = module_body.parseString(data)
        parseTree.pprint()
    prints::
        [['def',
          'A',
          ['(', 'z', ')'],
          ':',
          [['A1'], [['B', '=', '100']], [['G', '=', 'A2']], ['A2'], ['A3']]],
         'B',
         ['def',
          'BB',
          ['(', 'a', 'b', 'c', ')'],
          ':',
          [['BB1'], [['def', 'BBA', ['(', ')'], ':', [['bba1'], ['bba2'], ['bba3']]]]]],
         'C',
         'D',
         ['def',
          'spam',
          ['(', 'x', 'y', ')'],
          ':',
          [[['def', 'eggs', ['(', 'z', ')'], ':', [['pass']]]]]]] 
    css|t|�krdSt||�}|�dkro|�dkrZt||d��nt||d��ndS(Ni����sillegal nestingsnot a peer entry(R�R7RR(R�RNRptcurCol(tindentStack(s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pytcheckPeerIndent�scsEt||�}|�dkr/�j|�nt||d��dS(Ni����snot a subentry(R7RR(R�RNRpR+(R,(s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pytcheckSubIndent�scsn|t|�krdSt||�}�oH|�dkoH|�dks`t||d��n�j�dS(Ni����i����snot an unindent(R�R7RR�(R�RNRpR+(R,(s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt
checkUnindent�s&s	 tINDENTRrtUNINDENTsindented block(RRR�R�RRzR�RRR�R�(tblockStatementExprR,R$R-R.R/R7R0tPEERtUNDENTtsmExpr((R,s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRdQsN"8$s#[\0xc0-\0xd6\0xd8-\0xf6\0xf8-\0xff]s[\0xa1-\0xbf\0xd7\0xf7]s_:sany tagsgt lt amp nbsp quot aposs><& "'s&(?P<entity>R�s);scommon HTML entitycCstj|j�S(sRHelper parser action to replace common HTML entities with their special characters(t_htmlEntityMapR�tentity(Rp((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRY�ss/\*(?:[^*]|\*(?!/))*s*/sC style comments<!--[\s\S]*?-->sHTML comments.*srest of lines//(?:\\\n|[^\n])*s
// commentsC++ style comments#.*sPython style comments 	t	commaItemR�cBs�eZdZee�Zee�Zee	�j
d�je�Zee
�j
d�jeed��Zed�j
d�je�Ze�je�de�je�j
d�Zejd��eeeed	�j�e�Bj
d
�Zeje�ed�j
d�je�Zed
�j
d�je�ZeeBeBj�Zed�j
d�je�Zeeded�j
d�Zed�j
d�Zed�j
d�Z e de dj
d�Z!ee de d8�dee de d9�j
d�Z"e"j#d��dej
d �Z$e%e!e$Be"Bj
d!��j
d!�Z&ed"�j
d#�Z'e(d$d%��Z)e(d&d'��Z*ed(�j
d)�Z+ed*�j
d+�Z,ed,�j
d-�Z-e.j�e/j�BZ0e(d.��Z1e%e2e3d/�e4�ee5d0d/�ee6d1����j�j
d2�Z7e8ee9j:�e7Bd3d4��j
d5�Z;e(ed6���Z<e(ed7���Z=RS(:s�

    Here are some common low-level expressions that may be useful in jump-starting parser development:
     - numeric forms (L{integers<integer>}, L{reals<real>}, L{scientific notation<sci_real>})
     - common L{programming identifiers<identifier>}
     - network addresses (L{MAC<mac_address>}, L{IPv4<ipv4_address>}, L{IPv6<ipv6_address>})
     - ISO8601 L{dates<iso8601_date>} and L{datetime<iso8601_datetime>}
     - L{UUID<uuid>}
     - L{comma-separated list<comma_separated_list>}
    Parse actions:
     - C{L{convertToInteger}}
     - C{L{convertToFloat}}
     - C{L{convertToDate}}
     - C{L{convertToDatetime}}
     - C{L{stripHTMLTags}}
     - C{L{upcaseTokens}}
     - C{L{downcaseTokens}}

    Example::
        pyparsing_common.number.runTests('''
            # any int or real number, returned as the appropriate type
            100
            -100
            +100
            3.14159
            6.02e23
            1e-12
            ''')

        pyparsing_common.fnumber.runTests('''
            # any int or real number, returned as float
            100
            -100
            +100
            3.14159
            6.02e23
            1e-12
            ''')

        pyparsing_common.hex_integer.runTests('''
            # hex numbers
            100
            FF
            ''')

        pyparsing_common.fraction.runTests('''
            # fractions
            1/2
            -3/4
            ''')

        pyparsing_common.mixed_integer.runTests('''
            # mixed fractions
            1
            1/2
            -3/4
            1-3/4
            ''')

        import uuid
        pyparsing_common.uuid.setParseAction(tokenMap(uuid.UUID))
        pyparsing_common.uuid.runTests('''
            # uuid
            12345678-1234-5678-1234-567812345678
            ''')
    prints::
        # any int or real number, returned as the appropriate type
        100
        [100]

        -100
        [-100]

        +100
        [100]

        3.14159
        [3.14159]

        6.02e23
        [6.02e+23]

        1e-12
        [1e-12]

        # any int or real number, returned as float
        100
        [100.0]

        -100
        [-100.0]

        +100
        [100.0]

        3.14159
        [3.14159]

        6.02e23
        [6.02e+23]

        1e-12
        [1e-12]

        # hex numbers
        100
        [256]

        FF
        [255]

        # fractions
        1/2
        [0.5]

        -3/4
        [-0.75]

        # mixed fractions
        1
        [1]

        1/2
        [0.5]

        -3/4
        [-0.75]

        1-3/4
        [1.75]

        # uuid
        12345678-1234-5678-1234-567812345678
        [UUID('12345678-1234-5678-1234-567812345678')]
    tintegershex integeris[+-]?\d+ssigned integerR�tfractioncCs|d|dS(Nii����((Rp((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRq�RrRzs"fraction or mixed integer-fractions
[+-]?\d+\.\d*sreal numbers+[+-]?\d+([eE][+-]?\d+|\.\d*([eE][+-]?\d+)?)s$real number with scientific notations[+-]?\d+\.?\d*([eE][+-]?\d+)?tfnumberR�t
identifiersK(25[0-5]|2[0-4][0-9]|1?[0-9]{1,2})(\.(25[0-5]|2[0-4][0-9]|1?[0-9]{1,2})){3}sIPv4 addresss[0-9a-fA-F]{1,4}thex_integerRisfull IPv6 addressiis::sshort IPv6 addresscCstd�|D��dkS(Ncss'|]}tjj|�rdVqdS(iN(Rlt
_ipv6_partR�(R�R�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pys	<genexpr>�si(R�(Rp((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRq�Rrs::ffff:smixed IPv6 addresssIPv6 addresss:[0-9a-fA-F]{2}([:.-])[0-9a-fA-F]{2}(?:\1[0-9a-fA-F]{2}){4}sMAC addresss%Y-%m-%dcs�fd�}|S(s�
        Helper to create a parse action for converting parsed date string to Python datetime.date

        Params -
         - fmt - format to be passed to datetime.strptime (default=C{"%Y-%m-%d"})

        Example::
            date_expr = pyparsing_common.iso8601_date.copy()
            date_expr.setParseAction(pyparsing_common.convertToDate())
            print(date_expr.parseString("1999-12-31"))
        prints::
            [datetime.date(1999, 12, 31)]
        csPytj|d��j�SWn+tk
rK}t||t|���nXdS(Ni(RtstrptimetdateR�RRu(R�RNRptve(tfmt(s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pytcvt_fn�s((RBRC((RBs@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt
convertToDate�ss%Y-%m-%dT%H:%M:%S.%fcs�fd�}|S(s
        Helper to create a parse action for converting parsed datetime string to Python datetime.datetime

        Params -
         - fmt - format to be passed to datetime.strptime (default=C{"%Y-%m-%dT%H:%M:%S.%f"})

        Example::
            dt_expr = pyparsing_common.iso8601_datetime.copy()
            dt_expr.setParseAction(pyparsing_common.convertToDatetime())
            print(dt_expr.parseString("1999-12-31T23:59:59.999"))
        prints::
            [datetime.datetime(1999, 12, 31, 23, 59, 59, 999000)]
        csJytj|d��SWn+tk
rE}t||t|���nXdS(Ni(RR?R�RRu(R�RNRpRA(RB(s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRC�s((RBRC((RBs@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pytconvertToDatetime�ss7(?P<year>\d{4})(?:-(?P<month>\d\d)(?:-(?P<day>\d\d))?)?sISO8601 dates�(?P<year>\d{4})-(?P<month>\d\d)-(?P<day>\d\d)[T ](?P<hour>\d\d):(?P<minute>\d\d)(:(?P<second>\d\d(\.\d*)?)?)?(?P<tz>Z|[+-]\d\d:?\d\d)?sISO8601 datetimes2[0-9a-fA-F]{8}(-[0-9a-fA-F]{4}){3}-[0-9a-fA-F]{12}tUUIDcCstjj|d�S(s
        Parse action to remove HTML tags from web page HTML source

        Example::
            # strip HTML links from normal text 
            text = '<td>More info at the <a href="http://pyparsing.wikispaces.com">pyparsing</a> wiki page</td>'
            td,td_end = makeHTMLTags("TD")
            table_text = td + SkipTo(td_end).setParseAction(pyparsing_common.stripHTMLTags)("body") + td_end
            
            print(table_text.parseString(text).body) # -> 'More info at the pyparsing wiki page'
        i(Rlt_html_stripperR{(R�RNR�((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt
stripHTMLTags�s
R�R<s 	R8R�Rrscomma separated listcCst|�j�S(N(RR,(Rp((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRq�RrcCst|�j�S(N(RR�(Rp((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRq�Rr(ii(ii(>R�R�R�RkRotconvertToIntegertfloattconvertToFloatR-RPR�RzR9RBR=R%tsigned_integerR:R�RR�t
mixed_integerR�trealtsci_realR�tnumberR;R2R1R<tipv4_addressR>t_full_ipv6_addresst_short_ipv6_addressR�t_mixed_ipv6_addressRtipv6_addresstmac_addressR#RDREtiso8601_datetiso8601_datetimetuuidR5R4RGRHRRRRTR,t
_commasepitemR>RWR�tcomma_separated_listRbR@(((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyRl�sL�'/-
 ;&J+t__main__tselecttfroms_$R�R�tcolumnsR�ttablestcommandsK
        # '*' as column list and dotted table name
        select * from SYS.XYZZY

        # caseless match on "SELECT", and casts back to "select"
        SELECT * from XYZZY, ABC

        # list of column names, and mixed case SELECT keyword
        Select AA,BB,CC from Sys.dual

        # multiple tables
        Select A, B, C from Sys.dual, Table2

        # invalid SELECT keyword - should fail
        Xelect A, B, C from Sys.dual

        # incomplete command - should fail
        Select

        # invalid column name - should fail
        Select ^^^ frox Sys.dual

        s]
        100
        -100
        +100
        3.14159
        6.02e23
        1e-12
        s 
        100
        FF
        s6
        12345678-1234-5678-1234-567812345678
        (�R�t__version__t__versionTime__t
__author__R�tweakrefRR�R�RxR�R|RSR�R8RRR�Rt_threadRtImportErrort	threadingRR�tordereddictR�t__all__R�tversion_infoRQRtmaxsizeR$RuR�tchrR�RR�R�R2treversedR�R�R4RxRIRJR_tmaxinttxrangeR�t__builtin__R�tfnameRR`R�R�R�R�R�R�tascii_uppercasetascii_lowercaseR2RPRBR1R�R�t	printableRTRaRRRR!R$R�R tMutableMappingtregisterR7RHRERGRKRMROReR"R*RRRRRiRRRRjR-R%R#RR,RpRRRR(R'R/R.RRRRR
RRRR�RR0R�R�RR&R
R�R+RRR	R)RR`R�R>R:R�RMRLRER�RQR?ReRfRhR�RARGRFR_R^Rzt_escapedPunct_escapedHexChart_escapedOctChartUNICODEt_singleChart
_charRangeR�R�R]RKRZRXRkRbR@RRIRJRcRRiRRRRRgRSR<R\RWRaRNRdR3RUR5R4R�R�R6R�R9RYR6RCR�R[R=R;RDRVR�RZR8RlR�tselectTokent	fromTokentidentt
columnNametcolumnNameListt
columnSpect	tableNamet
tableNameListt	simpleSQLR"RPR;R=RYRF(((s@/usr/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyt<module>=s�


	*		
	


8
���	
		
				@�����&	A=�I�G3pLOD|M &#	@sQ,A	,					I	#%		!4@		
			,					?#	k%Zr(,	#8+�
$				

Hacked By AnonymousFox1.0, Coded By AnonymousFox