DonatShell
Server IP : 180.180.241.3  /  Your IP : 216.73.216.252
Web Server : Microsoft-IIS/7.5
System : Windows NT NETWORK-NHRC 6.1 build 7601 (Windows Server 2008 R2 Standard Edition Service Pack 1) i586
User : IUSR ( 0)
PHP Version : 5.3.28
Disable Function : NONE
MySQL : ON  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  C:/Program Files (x86)/MySQL/MySQL Workbench 6.1 CE/python/lib/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME SHELL ]     

Current File : C:/Program Files (x86)/MySQL/MySQL Workbench 6.1 CE/python/lib//tokenize.pyc

'Sc@sdZdZdZddlZddlZddlTddlZgeeD]ZejdsMe^qMZ	e	ddd	d
dg7Z	[[e
Zdee<e
dZ
d
ee
<e
d
7Z
dZdZdZdZdZeedeeeZdZdZdZdZdZeeeeeZdZeddeeZdeZeeeZededZeeeeZdZ d Z!d!Z"d"Z#ed#d$Z$ed%d&Z%ed'd(d)d*d+d,d-d.Z&d/Z'ed0d1Z(ee&e'e(Z)eee)e%eZ*ee*Z+ed2ed3dd4ed5dZ,edee$Z-eee-ee)e,eZ.e/ej0e+e.e"e#f\Z1Z2Z3Z4i&ej0e d36ej0e!d56e3d66e4d76e3d86e4d96e3d:6e4d;6e3d<6e4d=6e3d>6e4d?6e3d@6e4dA6e3dB6e4dC6e3dD6e4dE6e3dF6e4dG6e3dH6e4dI6e3dJ6e4dK6e3dL6e4dM6e3dN6e4dO6e3dP6e4dQ6e3dR6e4dS6ddT6ddU6ddV6ddW6ddX6ddY6Z6iZ7xdD]Z8e8e7e8<qWiZ9xdD]Z8e8e9e8<qWdvZ:dwe;fdxYZ<dye;fdzYZ=d{Z>e>d|Z?d}Z@d~ddYZAdZBdZCeDdkrddlEZEeFeEjGdkre?eHeEjGdjIqe?eEjJjIndS(sTokenization help for Python programs.

generate_tokens(readline) is a generator that breaks a stream of
text into Python tokens.  It accepts a readline-like method which is called
repeatedly to get the next line of input (or "" for EOF).  It generates
5-tuples with these members:

    the token type (see token.py)
    the token (a string)
    the starting (row, column) indices of the token (a 2-tuple of ints)
    the ending (row, column) indices of the token (a 2-tuple of ints)
    the original line (string)

It is designed to match the working of the Python tokenizer exactly, except
that it produces COMMENT tokens for comments and gives type OP for all
operators

Older entry points
    tokenize_loop(readline, tokeneater)
    tokenize(readline, tokeneater=printtoken)
are the same, except instead of generating tokens, tokeneater is a callback
function to which the 5 fields described above are passed as 5 arguments,
each time a new token is found.sKa-Ping Yee <ping@lfw.org>sSGvR, ESR, Tim Peters, Thomas Wouters, Fred Drake, Skip Montanaro, Raymond HettingeriN(t*t_tCOMMENTttokenizetgenerate_tokenstNLt
untokenizeiicGsddj|dS(Nt(t|t)(tjoin(tchoices((sJC:\Program Files (x86)\MySQL\MySQL Workbench 6.1 CE\Python\Lib\tokenize.pytgroup,scGst|dS(NR(R(R((sJC:\Program Files (x86)\MySQL\MySQL Workbench 6.1 CE\Python\Lib\tokenize.pytany-scGst|dS(Nt?(R(R((sJC:\Program Files (x86)\MySQL\MySQL Workbench 6.1 CE\Python\Lib\tokenize.pytmaybe.ss[ \f\t]*s	#[^\r\n]*s\\\r?\ns[a-zA-Z_]\w*s0[xX][\da-fA-F]+[lL]?s(0[oO][0-7]+)|(0[0-7]*)[lL]?s0[bB][01]+[lL]?s
[1-9]\d*[lL]?s[eE][-+]?\d+s\d+\.\d*s\.\d+s\d+s\d+[jJ]s[jJ]s[^'\\]*(?:\\.[^'\\]*)*'s[^"\\]*(?:\\.[^"\\]*)*"s%[^'\\]*(?:(?:\\.|'(?!''))[^'\\]*)*'''s%[^"\\]*(?:(?:\\.|"(?!""))[^"\\]*)*"""s
[uU]?[rR]?'''s
[uU]?[rR]?"""s&[uU]?[rR]?'[^\n'\\]*(?:\\.[^\n'\\]*)*'s&[uU]?[rR]?"[^\n"\\]*(?:\\.[^\n"\\]*)*"s\*\*=?s>>=?s<<=?s<>s!=s//=?s[+\-*/%&|^=<>]=?t~s[][(){}]s\r?\ns[:;.,`@]s%[uU]?[rR]?'[^\n'\\]*(?:\\.[^\n'\\]*)*t's%[uU]?[rR]?"[^\n"\\]*(?:\\.[^\n"\\]*)*t"s'''s"""sr'''sr"""su'''su"""sur'''sur"""sR'''sR"""sU'''sU"""suR'''suR"""sUr'''sUr"""sUR'''sUR"""sb'''sb"""sbr'''sbr"""sB'''sB"""sbR'''sbR"""sBr'''sBr"""sBR'''sBR"""trtRtutUtbtBsr'sr"sR'sR"su'su"sU'sU"sur'sur"sUr'sUr"suR'suR"sUR'sUR"sb'sb"sB'sB"sbr'sbr"sBr'sBr"sbR'sbR"sBR'sBR"it
TokenErrorcBseZRS((t__name__t
__module__(((sJC:\Program Files (x86)\MySQL\MySQL Workbench 6.1 CE\Python\Lib\tokenize.pyRstStopTokenizingcBseZRS((RR(((sJC:\Program Files (x86)\MySQL\MySQL Workbench 6.1 CE\Python\Lib\tokenize.pyRsc	CsA|\}}|\}}d||||t|t|fGHdS(Ns%d,%d-%d,%d:	%s	%s(ttok_nametrepr(	ttypettokent	srow_scolt	erow_ecoltlinetsrowtscolterowtecol((sJC:\Program Files (x86)\MySQL\MySQL Workbench 6.1 CE\Python\Lib\tokenize.pyt
printtokenscCs)yt||Wntk
r$nXdS(s:
    The tokenize() function accepts two parameters: one representing the
    input stream, and one providing an output mechanism for tokenize().

    The first parameter, readline, must be a callable object which provides
    the same interface as the readline() method of built-in file objects.
    Each call to the function should return one line of input as a string.

    The second parameter, tokeneater, must also be a callable object. It is
    called once for each token, with five arguments, corresponding to the
    tuples generated by generate_tokens().
    N(t
tokenize_loopR(treadlinet
tokeneater((sJC:\Program Files (x86)\MySQL\MySQL Workbench 6.1 CE\Python\Lib\tokenize.pyRs

cCs%xt|D]}||q
WdS(N(R(R*R+t
token_info((sJC:\Program Files (x86)\MySQL\MySQL Workbench 6.1 CE\Python\Lib\tokenize.pyR)stUntokenizercBs,eZdZdZdZdZRS(cCsg|_d|_d|_dS(Nii(ttokenstprev_rowtprev_col(tself((sJC:\Program Files (x86)\MySQL\MySQL Workbench 6.1 CE\Python\Lib\tokenize.pyt__init__s		cCsO|\}}||jks!t||j}|rK|jjd|ndS(Nt (R/tAssertionErrorR0R.tappend(R1tstarttrowtcolt
col_offset((sJC:\Program Files (x86)\MySQL\MySQL Workbench 6.1 CE\Python\Lib\tokenize.pytadd_whitespaces

cCsx|D]}t|dkr3|j||Pn|\}}}}}|j||jj||\|_|_|ttfkr|jd7_d|_qqWdj	|jS(Niiit(
tlentcompatR:R.R5R/R0tNEWLINERR
(R1titerablettttok_typeR R6tendR#((sJC:\Program Files (x86)\MySQL\MySQL Workbench 6.1 CE\Python\Lib\tokenize.pyRs

c
CsYt}g}|jj}|\}}|ttfkrC|d7}n|ttfkr^t}nt}x|D]}	|	d \}}|ttfkr|d7}n|tkr|rd|}nt}nt}|t	kr|j|qknZ|t
kr	|jqkn>|ttfkr$t}n#|rG|rG||dt}n||qkWdS(NR3ii(tFalseR.R5tNAMEtNUMBERR>RtTruetSTRINGtINDENTtDEDENTtpop(
R1R R?t	startlinetindentsttoks_appendttoknumttokvalt
prevstringttok((sJC:\Program Files (x86)\MySQL\MySQL Workbench 6.1 CE\Python\Lib\tokenize.pyR=s<
	


	

		(RRR2R:RR=(((sJC:\Program Files (x86)\MySQL\MySQL Workbench 6.1 CE\Python\Lib\tokenize.pyR-s			cCst}|j|S(sTransform tokens back into Python source code.

    Each element returned by the iterable must be a token sequence
    with at least two elements, a token number and token value.  If
    only two tokens are passed, the resulting output is poor.

    Round-trip invariant for full input:
        Untokenized source will match input source exactly

    Round-trip invariant for limited intput:
        # Output text will tokenize the back to the input
        t1 = [tok[:2] for tok in generate_tokens(f.readline)]
        newcode = untokenize(t1)
        readline = iter(newcode.splitlines(1)).next
        t2 = [tok[:2] for tok in generate_tokens(readline)]
        assert t1 == t2
    (R-R(R?tut((sJC:\Program Files (x86)\MySQL\MySQL Workbench 6.1 CE\Python\Lib\tokenize.pyRs	c
cs2d}}}tjdd}}d\}}d}dg}	xy
|}
Wntk
rfd}
nX|d7}dt|
}}|r{|
std|
fn|j|
}|r|jd}}t||
| |
||f||
fVd\}}d}q|ra|
ddkra|
d	d
krat	||
|
|t|
f|fVd}d}q@q||
}||
}q@n`|dkr|r|
sPnd}xv||kr|
|dkr|d7}n?|
|dkr|t
dt
}n|
|d
krd}nP|d7}qW||kr'Pn|
|dkr|
|dkr|
|jd}|t|}t|||f||t|f|
fVt
|
|||f|t|
f|
fVq@t
tf|
|dk|
|||f|t|
f|
fVq@n||	dkrI|	j|t|
| |df||f|
fVnx||	dkr||	krtdd|||
fn|	d }	td||f||f|
fVqLWn$|
std|dffnd}x||krtj|
|}|r|jd\}}||f||f|}}}|
||!|
|}}||kss|dkr|dkrt||||
fVq|dkr|dkrt
nt||||
fVq|dkr|jdstt||||
fVq|tkrt|}|j|
|}|r_|jd}|
||!}t||||f|
fVq||f}
|
|}|
}Pq|tks|d tks|d tkr|ddkr||f}
t|pt|dpt|d}|
|d}}|
}Pqt||||
fVq||krBt||||
fVq|dkrWd}q|dkrp|d7}n|dkr|d8}nt||||
fVqt	|
|||f||df|
fV|d7}qWq@x2|	dD]&}td|df|dfdfVqWtd|df|dfdfVdS(sS
    The generate_tokens() generator requires one argment, readline, which
    must be a callable object which provides the same interface as the
    readline() method of built-in file objects. Each call to the function
    should return one line of input as a string.  Alternately, readline
    can be a callable function terminating with StopIteration:
        readline = open(myfile).next    # Example of alternate readline

    The generator produces 5-tuples with these members: the token type; the
    token string; a 2-tuple (srow, scol) of ints specifying the row and
    column where the token begins in the source; a 2-tuple (erow, ecol) of
    ints specifying the row and column where the token ends in the source;
    and the line on which the token was found. The line passed is the
    logical line; continuation lines are included.
    iRt
0123456789R;isEOF in multi-line stringis\
is\
R3s	ss#
t#s
is3unindent does not match any outer indentation levels
<tokenize>sEOF in multi-line statementt.s
iis\s([{s)]}N(R;i(R;i(tstringt
ascii_letterstNonet
StopIterationR<RtmatchRBRGt
ERRORTOKENttabsizetrstripRRR5RHtIndentationErrorRIt
pseudoprogtspanRER>tendswithR4t
triple_quotedtendprogst
single_quotedRDtOPt	ENDMARKER(R*tlnumtparenlevt	continuedt	namecharstnumcharstcontstrtneedconttcontlineRLR#tpostmaxtstrstarttendprogtendmatchRBtcolumnt
comment_tokentnl_postpseudomatchR6tsposteposR tinitialtindent((sJC:\Program Files (x86)\MySQL\MySQL Workbench 6.1 CE\Python\Lib\tokenize.pyRs	



	&



	$
# 
'
' 


	


$t__main__(s'''s"""sr'''sr"""sR'''sR"""su'''su"""sU'''sU"""sur'''sur"""sUr'''sUr"""suR'''suR"""sUR'''sUR"""sb'''sb"""sB'''sB"""sbr'''sbr"""sBr'''sBr"""sbR'''sbR"""sBR'''sBR"""(RRsr'sr"sR'sR"su'su"sU'sU"sur'sur"sUr'sUr"suR'suR"sUR'sUR"sb'sb"sB'sB"sbr'sbr"sBr'sBr"sbR'sbR"sBR'sBR"((Kt__doc__t
__author__t__credits__RVtreR tdirtxt
startswitht__all__tN_TOKENSRRRRR
Rt
WhitespacetCommenttIgnoretNamet	Hexnumbert	Octnumbert	Binnumbert	Decnumbert	IntnumbertExponentt
PointfloattExpfloattFloatnumbert
ImagnumbertNumbertSingletDoubletSingle3tDouble3tTripletStringtOperatortBrackettSpecialtFunnyt
PlainTokentTokentContStrtPseudoExtrastPseudoTokentmaptcompilet	tokenprogR_tsingle3progtdouble3progRXRcRbR@RdR\t	ExceptionRRR(RR)R-RRRtsysR<targvtopenR*tstdin(((sJC:\Program Files (x86)\MySQL\MySQL Workbench 6.1 CE\Python\Lib\tokenize.pyt<module>s
.



			
		

'#

		A		

Anon7 - 2022
AnonSec Team