Warning: session_start(): Session cannot be started after headers have already been sent in /home/tvrreohg/public_html/manga.php on line 13
3 \NXã=@sŒdZdZdZddlZddlZddlmZmZddlTddl m Z d d „e e ƒDƒd d d gZ [ ye Wnek r~eZ YnXdd„Zdd„Zdd„ZdZdZeedeƒeeƒZdZdZdZdZeddƒZeeeeeƒZdZeddƒeeƒZd eZeeeƒZed!ed"ƒZ ee eeƒZ!d#Z"d$Z#d%Z$d&Z%d'Z&ee&d(e&d)ƒZ'ee&d*e&d+ƒZ(ed,d-d.d/d0d1d2d3d4ƒ Z)d5Z*ed6d7ƒZ+ee)e*e+ƒZ,ee!e,e(eƒZ-ee-Z.ee&d8ed9dƒe&d:ed;dƒƒZ/edee'ƒZ0eee0e!e,e/eƒZ1e2e3ej4e.e1e$e%fƒƒ\Z5Z6Z7Z8ej4e"ƒej4e#ƒe7e8e7e8e7e8e7e8e7e8e7e8e7e8e7e8e7e8e7e8e7e8e7e8e7e8e7e8e7e8e7e8e7e8e7e8e7e8e7e8e7e8ddddddddd<œ4Z9iZ:xd¢D]Z;e;e:e;<�qŒWiZƒZ?Gd�d‘„d‘e>ƒZ@d’d“„ZAeAfd”d „ZBd•d–„ZCGd—d˜„d˜ƒZDej4d™ejEƒZFej4dšejEƒZGd›dœ„ZHd�dž„ZIdŸd „ZJd d „ZKeLd¡k�rˆddlMZMeNeMjOƒdk�r|eBePeMjOdƒjQƒn eBeMjRjQƒdS)¤aÀ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.zKa-Ping Yee z@GvR, ESR, Tim Peters, Thomas Wouters, Fred Drake, Skip MontanaroéN)ÚBOM_UTF8Úlookup)Ú*é)ÚtokencCsg|]}|ddkr|‘qS)rÚ_©)Ú.0Úxrrú./usr/lib64/python3.6/lib2to3/pgen2/tokenize.pyú %sr ÚtokenizeÚgenerate_tokensÚ untokenizecGsddj|ƒdS)Nú(ú|ú))Újoin)Úchoicesrrr Úgroup0srcGs t|ŽdS)Nr)r)rrrr Úany1srcGs t|ŽdS)Nú?)r)rrrr Úmaybe2srz[ \f\t]*z #[^\r\n]*z\\\r?\nz [a-zA-Z_]\w*z0[bB]_?[01]+(?:_[01]+)*z(0[xX]_?[\da-fA-F]+(?:_[\da-fA-F]+)*[lL]?z0[oO]?_?[0-7]+(?:_[0-7]+)*[lL]?z[1-9]\d*(?:_\d+)*[lL]?z0[lL]?z[eE][-+]?\d+(?:_\d+)*z\d+(?:_\d+)*\.(?:\d+(?:_\d+)*)?z\.\d+(?:_\d+)*z \d+(?:_\d+)*z\d+(?:_\d+)*[jJ]z[jJ]z[^'\\]*(?:\\.[^'\\]*)*'z[^"\\]*(?:\\.[^"\\]*)*"z%[^'\\]*(?:(?:\\.|'(?!''))[^'\\]*)*'''z%[^"\\]*(?:(?:\\.|"(?!""))[^"\\]*)*"""z#(?:[uUrRbBfF]|[rR][bB]|[bBuU][rR])?ú'''ú"""z'[^\n'\\]*(?:\\.[^\n'\\]*)*'z"[^\n"\\]*(?:\\.[^\n"\\]*)*"z\*\*=?z>>=?z<<=?z<>z!=z//=?z->z[+\-*/%&@|^=<>]=?ú~z[][(){}]z\r?\nz[:;.,`@]z'[^\n'\\]*(?:\\.[^\n'\\]*)*ú'z"[^\n"\\]*(?:\\.[^\n"\\]*)*ú")4rrz'''z"""zr'''zr"""zu'''zu"""zb'''zb"""zf'''zf"""zur'''zur"""zbr'''zbr"""zrb'''zrb"""zR'''zR"""zU'''zU"""zB'''zB"""zF'''zF"""zuR'''zuR"""zUr'''zUr"""zUR'''zUR"""zbR'''zbR"""zBr'''zBr"""zBR'''zBR"""zrB'''zrB"""zRb'''zRb"""zRB'''zRB"""ÚrÚRÚuÚUÚfÚFÚbÚBúr'''úr"""úR'''úR"""úu'''úu"""úU'''úU"""úb'''úb"""úB'''úB"""úf'''úf"""úF'''úF"""úur'''úur"""úUr'''úUr"""úuR'''úuR"""úUR'''úUR"""úbr'''úbr"""úBr'''úBr"""úbR'''úbR"""úBR'''úBR"""úrb'''úrb"""úRb'''úRb"""úrB'''úrB"""úRB'''úRB"""úr'úr"úR'úR"úu'úu"úU'úU"úb'úb"úB'úB"úf'úf"úF'úF"úur'úur"úUr'úUr"úuR'úuR"úUR'úUR"úbr'úbr"úBr'úBr"úbR'úbR"úBR'úBR"úrb'úrb"úRb'úRb"úrB'úrB"úRB'úRB"éc@s eZdZdS)Ú TokenErrorN)Ú__name__Ú __module__Ú __qualname__rrrr rw¤srwc@s eZdZdS)ÚStopTokenizingN)rxryrzrrrr r{¦sr{c Cs4|\}}|\}}td||||t|t|ƒfƒdS)Nz%d,%d-%d,%d: %s %s)ÚprintÚtok_nameÚrepr) ÚtyperZxxx_todo_changemeZxxx_todo_changeme1ÚlineZsrowZscolZerowZecolrrr Ú printtoken¨sr�c Cs(yt||ƒWntk r"YnXdS)a: 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)Ú tokenize_loopr{)ÚreadlineÚ tokeneaterrrr r ®s cCsxt|ƒD] }||Žq WdS)N)r)rƒr„Z token_inforrr r‚Ásr‚c@s,eZdZdd„Zdd„Zdd„Zdd„Zd S) Ú UntokenizercCsg|_d|_d|_dS)Nrr)ÚtokensÚprev_rowÚprev_col)Úselfrrr Ú__init__ÇszUntokenizer.__init__cCs*|\}}||j}|r&|jjd|ƒdS)Nú )rˆr†Úappend)r‰ÚstartÚrowÚcolÚ col_offsetrrr Úadd_whitespaceÌs zUntokenizer.add_whitespacecCs„xv|D]n}t|ƒdkr$|j||ƒP|\}}}}}|j|ƒ|jj|ƒ|\|_|_|ttfkr|jd7_d|_qWdj |jƒS)NérrÚ) ÚlenÚcompatr‘r†rŒr‡rˆÚNEWLINEÚNLr)r‰ÚiterableÚtÚtok_typerr�Úendr€rrr rÓs        zUntokenizer.untokenizec CsÒd}g}|jj}|\}}|ttfkr,|d7}|ttfkr|t kr˜|j ƒqBn*|ttfkrªd}n|rÂ|rÂ||dƒd}||ƒqBWdS)NFr‹Tr’réÿÿÿÿ) r†rŒÚNAMEÚNUMBERr–r—ÚASYNCÚAWAITÚINDENTÚDEDENTÚpop) r‰rr˜Ú startlineÚindentsÚ toks_appendÚtoknumÚtokvalÚtokrrr r•ás0      zUntokenizer.compatN)rxryrzrŠr‘rr•rrrr r…Åsr…z&^[ \t\f]*#.*?coding[:=][ \t]*([-\w.]+)s^[ \t\f]*(?:[#\r\n]|$)cCsH|dd…jƒjddƒ}|dks*|jdƒr.dS|d ks@|jdƒrDdS|S)z(Imitates get_normal_name in tokenizer.c.Né rú-zutf-8zutf-8-úlatin-1ú iso-8859-1ú iso-latin-1úlatin-1-ú iso-8859-1-ú iso-latin-1-)r¬r­r®)r¯r°r±)ÚlowerÚreplaceÚ startswith)Úorig_encÚencrrr Ú_get_normal_names r·cs¶d‰d}d}‡fdd„}‡fdd„}|ƒ}|jtƒrHd‰|d d…}d }|sT|gfS||ƒ}|rj||gfStj|ƒs~||gfS|ƒ}|s’||gfS||ƒ}|rª|||gfS|||gfS) a The detect_encoding() function is used to detect the encoding that should be used to decode a Python source file. It requires one argument, readline, in the same way as the tokenize() generator. It will call readline a maximum of twice, and return the encoding used (as a string) and a list of any lines (left as bytes) it has read in. It detects the encoding from the presence of a utf-8 bom or an encoding cookie as specified in pep-0263. If both a bom and a cookie are present, but disagree, a SyntaxError will be raised. If the encoding cookie is an invalid charset, raise a SyntaxError. Note that if a utf-8 bom is found, 'utf-8-sig' is returned. If no encoding is specified, then the default of 'utf-8' will be returned. FNzutf-8c s"yˆƒStk rtƒSXdS)N)Ú StopIterationÚbytesr)rƒrr Ú read_or_stop sz%detect_encoding..read_or_stopcs”y|jdƒ}Wntk r"dSXtj|ƒ}|s6dSt|jdƒƒ}y t|ƒ}Wn tk rptd|ƒ‚YnXˆr�|j dkrˆtdƒ‚|d7}|S)NÚasciirzunknown encoding: zutf-8zencoding problem: utf-8z-sig) ÚdecodeÚUnicodeDecodeErrorÚ cookie_reÚmatchr·rrÚ LookupErrorÚ SyntaxErrorÚname)r€Ú line_stringr¿ÚencodingÚcodec)Ú bom_foundrr Ú find_cookie&s"   z$detect_encoding..find_cookieTéz utf-8-sig)r´rÚblank_rer¿)rƒrÄÚdefaultrºrÇÚfirstÚsecondr)rÆrƒr Údetect_encoding s0         rÍcCstƒ}|j|ƒS)a¬Transform 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 tokin generate_tokens(readline)] assert t1 == t2 )r…r)r˜Úutrrr rTsc!csšd}}}tjdd}}d \}}d}dg} d} d} d} d} �xüy |ƒ}Wntk rdd}YnX|d}dt|ƒ}}|�rF|s�td|ƒ‚|j|ƒ}|rÞ|jdƒ}}t||d|…|||f||fVd!\}}d}nd|�r0|d"d…d k�r0|d#d…d k�r0t||||t|ƒf|fVd}d}qBn||}||}qB�nF|dk�rt| �rt|�s`Pd}xf||k�rÊ||d k�rˆ|d}n6||dk�r¨|t dt }n||dk�r¼d}nP|d}�qfW||k�rØP| �rè| Vd} ||dk�rž||dk�rh||d…j dƒ}|t|ƒ}t |||f||t|ƒf|fVt ||d…||f|t|ƒf|fVqBt t f||dk||d…||f|t|ƒf|fVqB|| d$k�rÖ| j |ƒt|d|…|df||f|fVxt|| d%k�rJ|| k�rtdd|||fƒ‚| dd&…} | �r.| | d'k�r.d} d} d} td||f||f|fV�qØW| �rŒ| �rŒ| | d(k�rŒd} d} d} n|�sˆtd|dfƒ‚d}�xª||k�r8tj||ƒ}|�r |jdƒ\}}||f||f|}}}|||…||}}||k�s|dk�r|dk�rt||||fV�q4|dk�rft}|dk�r8t }n | �rBd} | �rR| Vd} |||||fV�q4|dk�r”| �r€| Vd} t ||||fV�q4|tk�rt|}|j||ƒ}|�rô|jdƒ}|||…}| �rÞ| Vd} t||||f|fVn||f}||d…}|}P�q4|tk�s@|dd …tk�s@|dd …tk�r¸|d)dk�r”||f}t|�pxt|d�pxt|d }||d…d}}|}Pn | �r¤| Vd} t||||fV�q4||k�r�|d*k�rô| �rô|dk�ràtnt||||fV�q�t||||f}|dk�r| �r|} �q�|dk�rx| �rx| dtk�rx| ddk�rxd} | d+} t| d| d | d | dfVd} | �rˆ| Vd} |Vnz|dk�rÄ| �rª| Vd} t ||||f|fVd}nF|dk�rØ|d}n|dk�rê|d}| �rú| Vd} t||||fVn(t||||f||df|fV|d}�q�WqBW| �rN| Vd} x.| dd…D]} td|df|dfdfV�q\Wtd|df|dfdfVdS),aT The generate_tokens() generator requires one argument, 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. rrÚ 0123456789r“NFrzEOF in multi-line stringr’z\ rÈz\ r‹ú ú z# ú#z z3unindent does not match any outer indentation levelz zEOF in multi-line statementÚ.TÚ ÚasyncÚawaitÚdeféú\z([{z)]})r“r)r“réþÿÿÿéýÿÿÿrœrœrœrœrœrœ)rÕrÖrœ)ÚstringZ ascii_lettersr¸r”rwr¿r›ÚSTRINGÚ ERRORTOKENÚtabsizeÚrstripÚCOMMENTr—rŒr¡ÚIndentationErrorr¢Ú pseudoprogÚspanržr–Ú triple_quotedÚendprogsÚ single_quotedrŸr r�ÚOPÚ ENDMARKER)!rƒÚlnumÚparenlevÚ continuedZ namecharsÚnumcharsÚcontstrÚneedcontÚcontliner¥ÚstashedÚ async_defÚasync_def_indentÚ async_def_nlr€ÚposÚmaxÚstrstartÚendprogÚendmatchr›ÚcolumnÚ comment_tokenÚnl_posÚ pseudomatchr�ÚsposÚeposrÚinitialÚnewliner©Úindentrrr risp     *                             Ú__main__)*rrr&r'r(r)r*r+r,r-r.r/r0r1r2r3r4r5r6r7r8r9r:r;r<r=r>r?r@rArBrCrDrErFrGrHrIrJrKrLrM)*rrrNrOrPrQrRrSrTrUrVrWrXrYrZr[r\r]r^r_r`rarbrcrdrerfrgrhrirjrkrlrmrnrorprqrrrsrtru)SÚ__doc__Ú __author__Ú __credits__rÜÚreÚcodecsrrZlib2to3.pgen2.tokenr“rÚdirÚ__all__r¹Ú NameErrorÚstrrrrÚ WhitespaceÚCommentÚIgnoreÚNameÚ BinnumberÚ HexnumberÚ OctnumberÚ DecnumberÚ IntnumberÚExponentÚ PointfloatÚExpfloatÚ FloatnumberÚ ImagnumberÚNumberÚSingleÚDoubleÚSingle3ÚDouble3Z _litprefixÚTripleÚStringÚOperatorÚBracketÚSpecialÚFunnyÚ PlainTokenÚTokenÚContStrÚ PseudoExtrasÚ PseudoTokenÚlistÚmapÚcompileZ tokenprogrãZ single3progZ double3progrærår™rçrßÚ Exceptionrwr{r�r r‚r…ÚASCIIr¾rÉr·rÍrrrxÚsysr”ÚargvÚopenrƒÚstdinrrrr Úsþ              8 Ic