KGRKJGETMRETU895U-589TY5MIGM5JGB5SDFESFREWTGR54TY
Server : Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17
System : Linux localhost 2.6.18-419.el5 #1 SMP Fri Feb 24 22:47:42 UTC 2017 x86_64
User : nobody ( 99)
PHP Version : 5.2.17
Disable Function : NONE
Directory :  /proc/21571/root/usr/lib64/python2.4/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //proc/21571/root/usr/lib64/python2.4/tokenize.pyc
mò
‚=5Dc@s‹dZdZdZdkZdkZdkTdkZgZeeƒD]"ZeddjoeeqEqE[ddd	d
gZ	[[e
Zdee<e
dZ
d
ee
<e
d7Z
d
„Zd„Zd„ZdZdZeedeƒeeƒZdZdZdZdZeeeeƒZdZeddƒeeƒZdeZeeeƒZededƒZeeeeƒZdZdZ dZ!d Z"ed!d"ƒZ#ed#d$ƒZ$ed%d&d'd(d)d*d+d,ƒZ%d-Z&ed.d/ƒZ'ee%e&e'ƒZ(eee(e$eƒZ)ee)Z*ed0ed1dƒd2ed3dƒƒZ+edee#ƒZ,eee,ee(e+eƒZ-e.ei/e*e-e!e"fƒ\Z0Z1Z2Z3hd1ei/eƒ<d3ei/e ƒ<d4e2<d5e3<d6e2<d7e3<d8e2<d9e3<d:e2<d;e3<d<e2<d=e3<d>e2<d?e3<d@e2<dAe3<dBe2<dCe3<dDe2<dEe3<dFd<dGd<dHd<dId<Z5hZ6xddD]Z7e7e6e7<q›WhZ8xdeD]Z7e7e8e7<q¼WdZZ9d[e:fd\„ƒYZ;d]e:fd^„ƒYZ<d_„Z=e=d`„Z>da„Z?db„Z@eAdcjoQdkBZBeCeBiDƒdjoe>eEeBiDdƒiFƒq‡e>eBiGiFƒndS(fsÀTokenization 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>s@GvR, ESR, Tim Peters, Thomas Wouters, Fred Drake, Skip MontanaroN(t*it_tCOMMENTttokenizetgenerate_tokenstNLiicGsddi|ƒdS(Nt(t|t)(tjointchoices(R
((t /usr/lib64/python2.4/tokenize.pytgroup,scGst|ŒdS(NR(RR
(R
((Rtany-scGst|ŒdS(Nt?(RR
(R
((Rtmaybe.ss[ \f\t]*s	#[^\r\n]*s\\\r?\ns[a-zA-Z_]\w*s0[xX][\da-fA-F]*[lL]?s0[0-7]*[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"""trtRtutUsr'sr"sR'sR"su'su"sU'sU"sur'sur"sUr'sUr"suR'suR"sUR'sUR"it
TokenErrorcBstZRS(N(t__name__t
__module__(((RRƒstStopTokenizingcBstZRS(N(RR(((RR…sc	CsA|\}}|\}}d||||t|t|ƒfGHdS(Ns%d,%d-%d,%d:	%s	%s(tsrowtscolterowtecolttok_namettypetreprttoken(	R R"t.4t.6tlineRRRR((Rt
printtoken‡scCs+yt||ƒWntj
onXdS(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_looptreadlinet
tokeneaterR(R(R)((RR‹s
cCs%xt|ƒD]}||Œq
WdS(N(RR(t
token_infoR)(R(R)R*((RR'žs
ccsd}}}tidd}}d\}}
d}dg}x|ƒ}|d}dt|ƒ}}
|oø|ptd|f‚n|i|ƒ}|oN|idƒ}}t||| |||f||fVd\}}
d}qB|
oX|ddjoG|d	d
jo6t||||t|ƒf|fVd}d}q@qB||}||}q@nÞ|djoª|o¢|pPnd}x~||
jop||djo|d}nD||djo|tdt}n||d
jo
d}nP|d}qW||
joPn||djoDttf||dj||||f|t|ƒf|fVq@n||djo4|i|ƒt|| |df||f|fVnx†||djoJ||jotdƒ‚n|d }t d||f||f|fVq¼Wn'|ptd|dff‚nd}xü||
joît!i||ƒ}|o |i#dƒ\}}||f||f|}}}|||!||}}	|	|jp|	djo$|djot)||||fVq<|	djo+|djotpt*||||fVq<|	djot||||fVq<|t+jo}t,|}|i||ƒ}|o9|idƒ}|||!}t||||f|fVq||f}||}|}Pq<|	t-jp"|d t-jp|d t-jox|ddjoP||f}t,|	pt,|dpt,|d}||d}}
|}Pqt||||fVq<|	|jot.||||fVq<|	djo
d}q<|	djo|d}n|	djo|d}nt/||||fVqEt||||f||df|fV|d}qEWq@Wx1|dD]%}t d|df|dfdfVqQWt1d|df|dfdfVdS(sµ
    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.

    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
0123456789tisEOF in multi-line stringiþÿÿÿs\
iýÿÿÿs\
t s	ss#
t#iÿÿÿÿs3unindent does not match any outer indentation levelsEOF in multi-line statementt.s
iis
s\s([{s)]}N(R,i(R,i(2tlnumtparenlevt	continuedtstringt
ascii_letterst	namecharstnumcharstcontstrtneedconttNonetcontlinetindentsR(R%tlentpostmaxRtstrstarttendprogtmatchtendmatchtendtSTRINGt
ERRORTOKENtcolumnttabsizeRRtappendtINDENTtIndentationErrortDEDENTt
pseudoprogtpseudomatchtspantstarttsposteposR"tinitialtNUMBERtNEWLINEt
triple_quotedtendprogst
single_quotedtNAMEtOPtindentt	ENDMARKER(R(R0R=R5RZR%RQRCRORRR8R"R?R>RBRPR;R:R2RMR@RFR7R6R1((RR¢sÔ
		
%
)#




=
'

(
 '
+




/(




'#t__main__(s'''s"""sr'''sr"""sR'''sR"""su'''su"""sU'''sU"""sur'''sur"""sUr'''sUr"""suR'''suR"""sUR'''sUR"""(RRsr'sr"sR'sR"su'su"sU'sU"sur'sur"sUr'sUr"suR'suR"sUR'sUR"(Ht__doc__t
__author__t__credits__R3treR"t_[1]tdirtxt__all__tN_TOKENSRRRRR
Rt
WhitespacetCommenttIgnoretNamet	Hexnumbert	Octnumbert	Decnumbert	IntnumbertExponentt
PointfloattExpfloattFloatnumbert
ImagnumbertNumbertSingletDoubletSingle3tDouble3tTripletStringtOperatortBrackettSpecialtFunnyt
PlainTokentTokentContStrtPseudoExtrastPseudoTokentmaptcompilet	tokenprogRLtsingle3progtdouble3progR9RVRUttRWRGt	ExceptionRRR&RR'RRtsysR<targvtopenR(tstdin(;R}R‚RfRqR'RReR~RŠRVRwR
RiRR_RRyRdRRtR&RmR`RkRGR…RRRvRˆR3RrRuRlR^RhRR{R€RLRRWRnRoRgRjRR‡R†RsRaRpR"RR|RxRURzRc((RRs	L



			
		
*ð			…
	

Anon7 - 2021