Warning: session_start(): Session cannot be started after headers have already been sent in /home/tvrreohg/public_html/manga.php on line 13
§ àÀ fÃ0ãó4—dZddlZddlZGd„d¦«ZdS)z¼text_file provides the TextFile class, which gives an interface to text files that (optionally) takes care of stripping comments, ignoring blank lines, and joining lines with backslashes.éNcód—eZdZdZddddddddœZdd„Zd„Zd „Zdd „Zdd „Z dd „Z d „Z d„Z d„Z dS)ÚTextFileaû Provides a file-like object that takes care of all the things you commonly want to do when processing a text file that has some line-by-line syntax: strip comments (as long as "#" is your comment character), skip blank lines, join adjacent lines by escaping the newline (ie. backslash at end of line), strip leading and/or trailing whitespace. All of these are optional and independently controllable. Provides a 'warn()' method so you can generate warning messages that report physical line number, even if the logical line in question spans multiple physical lines. Also provides 'unreadline()' for implementing line-at-a-time lookahead. Constructor is called as: TextFile (filename=None, file=None, **options) It bombs (RuntimeError) if both 'filename' and 'file' are None; 'filename' should be a string, and 'file' a file object (or something that provides 'readline()' and 'close()' methods). It is recommended that you supply at least 'filename', so that TextFile can include it in warning messages. If 'file' is not supplied, TextFile creates its own using 'io.open()'. The options are all boolean, and affect the value returned by 'readline()': strip_comments [default: true] strip from "#" to end-of-line, as well as any whitespace leading up to the "#" -- unless it is escaped by a backslash lstrip_ws [default: false] strip leading whitespace from each line before returning it rstrip_ws [default: true] strip trailing whitespace (including line terminator!) from each line before returning it skip_blanks [default: true} skip lines that are empty *after* stripping comments and whitespace. (If both lstrip_ws and rstrip_ws are false, then some lines may consist of solely whitespace: these will *not* be skipped, even if 'skip_blanks' is true.) join_lines [default: false] if a backslash is the last non-newline character on a line after stripping comments and whitespace, join the following line to it to form one "logical line"; if N consecutive lines end with a backslash, then N+1 physical lines will be joined to form one logical line. collapse_join [default: false] strip leading whitespace from lines that are joined to their predecessor; only matters if (join_lines and not lstrip_ws) errors [default: 'strict'] error handler used to decode the file content Note that since 'rstrip_ws' can strip the trailing newline, the semantics of 'readline()' must differ from those of the builtin file object's 'readline()' method! In particular, 'readline()' returns None for end-of-file: an empty string might just be a blank line (or an all-whitespace line), if 'rstrip_ws' is true but 'skip_blanks' is not.érÚstrict)Ústrip_commentsÚ skip_blanksÚ lstrip_wsÚ rstrip_wsÚ join_linesÚ collapse_joinÚerrorsNc ó —|€|€td¦«‚|j ¦«D]:}||vrt||||¦«Œt|||j|¦«Œ;| ¦«D]}||jvrt d|z¦«‚Œ|€| |¦«n||_||_d|_g|_ dS)züConstruct a new TextFile object. At least one of 'filename' (a string) and 'file' (a file-like object) must be supplied. They keyword argument options are described above and affect the values returned by 'readline()'.Nz7you must supply either or both of 'filename' and 'file'zinvalid TextFile option '%s'r) Ú RuntimeErrorÚdefault_optionsÚkeysÚsetattrÚKeyErrorÚopenÚfilenameÚfileÚ current_lineÚlinebuf)ÚselfrrÚoptionsÚopts ú:/opt/alt/python311/lib64/python3.11/distutils/text_file.pyÚ__init__zTextFile.__init__Nsý€ð Ð    ÝÐXÑYÔYÐ YðÔ'×,Ò,Ñ.Ô.ð >ð >ˆCØ�gˆ~ˆ~ݘ˜c 7¨3¤<Ñ0Ô0Ð0Ð0嘘c 4Ô#7¸Ô#<Ñ=Ô=Ð=Ð=ð—<’<‘>”>ð Eð EˆCؘ$Ô.Ð.Ð.ÝÐ=ÀÑCÑDÔDÐDð/ð ˆ<Ø �IŠI�hÑ Ô Ð Ð à$ˆDŒM؈DŒIØ !ˆDÔ ð ˆŒ ˆ ˆ ócón—||_tj|jd|j¬¦«|_d|_dS)zyOpen a new file named 'filename'. This overrides both the 'filename' and 'file' arguments to the constructor.Úr)r rN)rÚiorr rr)rrs rrz TextFile.openos5€ð!ˆŒ Ý”G˜DœM¨3°t´{ÐCÑCÔCˆŒ ؈ÔÐÐrcóf—|j}d|_d|_d|_| ¦«dS)ziClose the current file and forget everything we know about it (filename, current line number).N)rrrÚclose)rrs rr#zTextFile.closevs2€ðŒyˆØˆŒ ؈Œ Ø ˆÔØ � Š ‰ Œ ˆ ˆ ˆ rcót—g}|€|j}| |jdz¦«t|tt f¦«r&| dt |¦«z¦«n| d|z¦«| t |¦«¦«d |¦«S)Nz, z lines %d-%d: z line %d: Ú)rÚappendrÚ isinstanceÚlistÚtupleÚstrÚjoin)rÚmsgÚlineÚoutmsgs rÚ gen_errorzTextFile.gen_errors¢€ØˆØ ˆ<ØÔ$ˆDØ� Š �d”m dÑ*Ñ+Ô+Ð+Ý �d�T¥5˜MÑ *Ô *ð .Ø �MŠM˜/­E°$©K¬KÑ7Ñ 8Ô 8Ð 8Ð 8à �MŠM˜+¨Ñ,Ñ -Ô -Ð -Ø� Š •c˜#‘h”hÑÔÐØ�wŠw�v‰ŒÐrcóN—td| ||¦«z¦«‚)Nzerror: )Ú ValueErrorr/©rr,r-s rÚerrorzTextFile.error‹s#€Ý˜ T§^¢^°C¸Ñ%>Ô%>Ñ>Ñ?Ô?Ð?rcóx—tj d| ||¦«zdz¦«dS)aÁPrint (to stderr) a warning message tied to the current logical line in the current file. If the current logical line in the file spans multiple physical lines, the warning refers to the whole range, eg. "lines 3-5". If 'line' supplied, it overrides the current line number; it may be a list or tuple to indicate a range of physical lines, or an integer for a single physical line.z warning: ú N)ÚsysÚstderrÚwriter/r2s rÚwarnz TextFile.warnŽs8€õ Œ ×Ò˜ t§~¢~°c¸4Ñ'@Ô'@Ñ@À4ÑGÑHÔHÐHÐHÐHrcóŒ—|jr|jd}|jd=|Sd} |j ¦«}|dkrd}|jr€|r~| d¦«}|dkrnb|dks||dz dkr7|dd krd pd}|d|…|z}| ¦«dkrŒ’n| d d¦«}|jr…|rƒ|€| d ¦«|S|j r|  ¦«}||z}t|j t¦«r|j ddz|j d<nZ|j |j dzg|_ nC|€dSt|j t¦«r|j ddz|_ n|j dz|_ |jr|jr| ¦«}n7|jr|  ¦«}n|jr| ¦«}|dks|d kr |jr�Œç|jr5|ddkr |dd…}�Œ|d d…d kr|dd …d z}�Œ#|S)aURead and return a single logical line from the current file (or from an internal buffer if lines have previously been "unread" with 'unreadline()'). If the 'join_lines' option is true, this may involve reading multiple physical lines concatenated into a single string. Updates the current line number, so calling 'warn()' after 'readline()' emits a warning about the physical line(s) just read. Returns None on end-of-file, since the empty string can occur if 'rstrip_ws' is true but 'strip_blanks' is not.éÿÿÿÿr%TNú#rrú\r5z\#z2continuation line immediately precedes end-of-fileéþÿÿÿz\ )rrÚreadlinerÚfindÚstripÚreplacer r9r Úlstripr'rr(r r Úrstripr)rr-Ú buildup_lineÚposÚeols rr?zTextFile.readline˜s€ð Œ<ð Ø”< Ô#ˆDØ” ˜RР؈Kàˆ ða à”9×%Ò%Ñ'Ô'ˆDØ�rŠzˆzØ�àÔ"ð$ 4 tð$ 4ð—i’i ‘n”n�ؘ"’9�9Øð˜A’X�X  c¨!¡e¤°Ò!4Ð!4ð  œ8 tÒ+Ð5°Ð;¸�CØ  # œ;¨Ñ,�Dð—z’z‘|”| rÒ)Ð)Ø ð*ð Ÿ<š<¨¨sÑ3Ô3�DðŒð > <ð >à�<Ø—I’Ið,ñ-ô-ð-à'Ð'àÔ%ð)ØŸ;š;™=œ=�DØ# dÑ*�õ˜dÔ/µÑ6Ô6ð@Ø+/Ô+<¸QÔ+?À!Ñ+C�DÔ% aÑ(Ð(à)-Ô):Ø)-Ô):¸QÑ)>ð)@�DÔ%Ð%ð�<ؘ4õ˜dÔ/µÑ6Ô6ð>Ø(,Ô(9¸!Ô(<¸qÑ(@�DÔ%Ð%à(,Ô(9¸AÑ(=�DÔ%ðŒ~ð % $¤.ð %Ø—z’z‘|”|��Ø”ð %Ø—{’{‘}”}��Ø”ð %Ø—{’{‘}”}�𘒠� ˜d dšl˜l°Ô0@˜lÙàŒð ؘ”8˜tÒ#Ð#Ø#'¨¨¨¤9�LÙà˜˜˜”9 Ò&Ð&Ø#'¨¨"¨¤:°Ñ#4�LÙðˆKrcód—g} | ¦«}|€|S| |¦«Œ.)zWRead and return the list of all logical lines remaining in the current file.)r?r&)rÚlinesr-s rÚ readlineszTextFile.readliness<€ðˆð Ø—=’=‘?”?ˆD؈|Ø� Ø �LŠL˜Ñ Ô Ð ð  rcó:—|j |¦«dS)z·Push 'line' (a string) onto an internal buffer that will be checked by future 'readline()' calls. Handy for implementing a parser with line-at-a-time lookahead.N)rr&)rr-s rÚ unreadlinezTextFile.unreadlines €ð Œ ×Ò˜DÑ!Ô!Ð!Ð!Ð!r)NN)N)Ú__name__Ú __module__Ú __qualname__Ú__doc__rrrr#r/r3r9r?rJrL©rrrr sꀀ€€€ð8ð8ðt+,Ø*+Ø*+Ø*+Ø*+Ø*+Ø*2ð ð€OðððððBðððððð ð ð ð ð@ð@ð@ð@ðIðIðIðIðvðvðvðpððð"ð"ð"ð"ð"rr)rPr6r!rrQrrúrRs^ðð.ð.ð €€€€€€€ðT"ðT"ðT"ðT"ðT"ñT"ôT"ðT"ðT"ðT"r