PNG  IHDR;IDATxܻn0K )(pA 7LeG{ §㻢|ذaÆ 6lذaÆ 6lذaÆ 6lom$^yذag5bÆ 6lذaÆ 6lذa{ 6lذaÆ `}HFkm,mӪôô! x|'ܢ˟;E:9&ᶒ}{v]n&6 h_tڠ͵-ҫZ;Z$.Pkž)!o>}leQfJTu іچ\X=8Rن4`Vwl>nG^is"ms$ui?wbs[m6K4O.4%/bC%t Mז -lG6mrz2s%9s@-k9=)kB5\+͂Zsٲ Rn~GRC wIcIn7jJhۛNCS|j08yiHKֶۛkɈ+;SzL/F*\Ԕ#"5m2[S=gnaPeғL lذaÆ 6l^ḵaÆ 6lذaÆ 6lذa; _ذaÆ 6lذaÆ 6lذaÆ RIENDB`  lYW@sadZddlZddlZddlZddlZddlZddlZddlZyddlm Z Wn"e k rddl m Z YnXej ddhkrddlmZndZddlZddlmZmZmZmZddd hZeed r-ejejejejd d ZeZd d dddddddZGdddZGdddZy ej Z Wn+e!k rGddde"e#Z YnXGddddej$Z%ej%j&e%Gddde%Z'ej'j&e'ddl(m)Z)e'j&e)Gddde%Z*ej*j&e*Gdd d e*Z+Gd!d"d"e*Z,Gd#d$d$e+Z-Gd%d&d&e+Z.Gd'd(d(e*Z/Gd)d*d*e.e-Z0Gd+d,d,e'Z)Gd-d.d.e%Z1ej1j&e1Gd/d0d0ej2Z3Gd1d2d2e1Z4Gd3d4d4e4Z5dS)5z) Python implementation of the io module. N) allocate_lockwin32cygwin)setmode)__all__SEEK_SETSEEK_CURSEEK_END SEEK_HOLEirTcCsSt|tttfs(td|t|tsGtd|t|tsftd||dk rt|t rtd||dk rt|t rtd|t|}|tdst|t|krtd|d|k} d |k} d |k} d |k} d |k} d |k}d|k}d|kr| st| st| rtdddl}|j dt dd} |r|rtd| | | | dkrtd| p| p| p| std|r#|dk r#td|rA|dk rAtd|r_|dk r_tdt || rqdptd| rd pd| rd pd| rd pd| rd pd|d|}|}ynd}|dks|dkr|j rd"}d}|dkr]t }ytj|jj}Wnttfk rJYnX|dkr]|}|dkrutd|dkr|r|Std | rt||}nL| s| s| rt||}n(| rt||}ntd!||}|r |St|||||}|}||_|SWn|jYnXdS)#aOpen file and return a stream. Raise OSError upon failure. file is either a text or byte string giving the name (and the path if the file isn't in the current working directory) of the file to be opened or an integer file descriptor of the file to be wrapped. (If a file descriptor is given, it is closed when the returned I/O object is closed, unless closefd is set to False.) mode is an optional string that specifies the mode in which the file is opened. It defaults to 'r' which means open for reading in text mode. Other common values are 'w' for writing (truncating the file if it already exists), 'x' for exclusive creation of a new file, and 'a' for appending (which on some Unix systems, means that all writes append to the end of the file regardless of the current seek position). In text mode, if encoding is not specified the encoding used is platform dependent. (For reading and writing raw bytes use binary mode and leave encoding unspecified.) The available modes are: ========= =============================================================== Character Meaning --------- --------------------------------------------------------------- 'r' open for reading (default) 'w' open for writing, truncating the file first 'x' create a new file and open it for writing 'a' open for writing, appending to the end of the file if it exists 'b' binary mode 't' text mode (default) '+' open a disk file for updating (reading and writing) 'U' universal newline mode (deprecated) ========= =============================================================== The default mode is 'rt' (open for reading text). For binary random access, the mode 'w+b' opens and truncates the file to 0 bytes, while 'r+b' opens the file without truncation. The 'x' mode implies 'w' and raises an `FileExistsError` if the file already exists. Python distinguishes between files opened in binary and text modes, even when the underlying operating system doesn't. Files opened in binary mode (appending 'b' to the mode argument) return contents as bytes objects without any decoding. In text mode (the default, or when 't' is appended to the mode argument), the contents of the file are returned as strings, the bytes having been first decoded using a platform-dependent encoding or using the specified encoding if given. 'U' mode is deprecated and will raise an exception in future versions of Python. It has no effect in Python 3. Use newline to control universal newlines mode. buffering is an optional integer used to set the buffering policy. Pass 0 to switch buffering off (only allowed in binary mode), 1 to select line buffering (only usable in text mode), and an integer > 1 to indicate the size of a fixed-size chunk buffer. When no buffering argument is given, the default buffering policy works as follows: * Binary files are buffered in fixed-size chunks; the size of the buffer is chosen using a heuristic trying to determine the underlying device's "block size" and falling back on `io.DEFAULT_BUFFER_SIZE`. On many systems, the buffer will typically be 4096 or 8192 bytes long. * "Interactive" text files (files for which isatty() returns True) use line buffering. Other text files use the policy described above for binary files. encoding is the str name of the encoding used to decode or encode the file. This should only be used in text mode. The default encoding is platform dependent, but any encoding supported by Python can be passed. See the codecs module for the list of supported encodings. errors is an optional string that specifies how encoding errors are to be handled---this argument should not be used in binary mode. Pass 'strict' to raise a ValueError exception if there is an encoding error (the default of None has the same effect), or pass 'ignore' to ignore errors. (Note that ignoring encoding errors can lead to data loss.) See the documentation for codecs.register for a list of the permitted encoding error strings. newline is a string controlling how universal newlines works (it only applies to text mode). It can be None, '', '\n', '\r', and '\r\n'. It works as follows: * On input, if newline is None, universal newlines mode is enabled. Lines in the input can end in '\n', '\r', or '\r\n', and these are translated into '\n' before being returned to the caller. If it is '', universal newline mode is enabled, but line endings are returned to the caller untranslated. If it has any of the other legal values, input lines are only terminated by the given string, and the line ending is returned to the caller untranslated. * On output, if newline is None, any '\n' characters written are translated to the system default line separator, os.linesep. If newline is '', no translation takes place. If newline is any of the other legal values, any '\n' characters written are translated to the given string. closedfd is a bool. If closefd is False, the underlying file descriptor will be kept open when the file is closed. This does not work when a file name is given and must be True in that case. The newly created file is non-inheritable. A custom opener can be used by passing a callable as *opener*. The underlying file descriptor for the file object is then obtained by calling *opener* with (*file*, *flags*). *opener* must return an open file descriptor (passing os.open as *opener* results in functionality similar to passing None). open() returns a file object whose type depends on the mode, and through which the standard file operations such as reading and writing are performed. When open() is used to open a file in a text mode ('w', 'r', 'wt', 'rt', etc.), it returns a TextIOWrapper. When used to open a file in a binary mode, the returned class varies: in read binary mode, it returns a BufferedReader; in write binary and append binary modes, it returns a BufferedWriter, and in read/write mode, it returns a BufferedRandom. It is also possible to use a string or bytearray as a file for both reading and writing. For strings StringIO can be used like a file opened in a text mode, and for bytes a BytesIO can be used like a file opened in a binary mode. zinvalid file: %rzinvalid mode: %rzinvalid buffering: %rNzinvalid encoding: %rzinvalid errors: %rzaxrwb+tUxrwa+tbUz$can't use U and writing mode at oncerz'U' mode is deprecatedr Tz'can't have text and binary mode at oncer z)can't have read/write/append mode at oncez/must have exactly one of read/write/append modez-binary mode doesn't take an encoding argumentz+binary mode doesn't take an errors argumentz+binary mode doesn't take a newline argumentopenerFzinvalid buffering sizezcan't have unbuffered text I/Ozunknown mode: %r) isinstancestrbytesint TypeErrorsetlen ValueErrorwarningswarnDeprecationWarningFileIOisattyDEFAULT_BUFFER_SIZEosfstatfileno st_blksizeOSErrorAttributeErrorBufferedRandomBufferedWriterBufferedReader TextIOWrappermodeclose)filer1 bufferingencodingerrorsnewlineclosefdrZmodesZcreatingreadingwritingZ appendingZupdatingtextbinaryr!rawresultline_bufferingbsbufferrB$/opt/python35/lib/python3.5/_pyio.pyopen)s{ (                   ?$        rDc@s"eZdZdZddZdS) DocDescriptorz%Helper for builtins.open.__doc__ cCs dtjS)Nz\open(file, mode='r', buffering=-1, encoding=None, errors=None, newline=None, closefd=True) )rD__doc__)selfobjtyprBrBrC__get__szDocDescriptor.__get__N)__name__ __module__ __qualname__rFrJrBrBrBrCrEs rEc@s+eZdZdZeZddZdS) OpenWrapperzWrapper for builtins.open Trick so that open won't become a bound method when stored as a class variable (as dbm.dumb does). See initstdio() in Python/pylifecycle.c. cOs t||S)N)rD)clsargskwargsrBrBrC__new__szOpenWrapper.__new__N)rKrLrMrFrErRrBrBrBrCrNs  rNc@seZdZdS)UnsupportedOperationN)rKrLrMrBrBrBrCrSs rSc@sZeZdZdZddZdddZddZd d d Zd d ZdZ ddZ ddZ ddZ d ddZ ddZd ddZddZd ddZedd Zd d!d"Zd#d$Zd%d&Zd'd(Zd)d*Zd6d,d-Zd.d/Zd0d1Zd d2d3Zd4d5Zd S)7IOBaseagThe abstract base class for all I/O classes, acting on streams of bytes. There is no public constructor. This class provides dummy implementations for many methods that derived classes can override selectively; the default implementations represent a file that cannot be read, written or seeked. Even though IOBase does not declare read, readinto, or write because their signatures will vary, implementations and clients should consider those methods part of the interface. Also, implementations may raise UnsupportedOperation when operations they do not support are called. The basic type used for binary data read from or written to a file is bytes. Other bytes-like objects are accepted as method arguments too. In some cases (such as readinto), a writable object is required. Text I/O classes work with str data. Note that calling any method (even inquiries) on a closed stream is undefined. Implementations may raise OSError in this case. IOBase (and its subclasses) support the iterator protocol, meaning that an IOBase object can be iterated over yielding the lines in a stream. IOBase also supports the :keyword:`with` statement. In this example, fp is closed after the suite of the with statement is complete: with open('spam.txt', 'r') as fp: fp.write('Spam and eggs!') cCs td|jj|fdS)z@Internal: raise an OSError exception for unsupported operations.z%s.%s() not supportedN)rS __class__rK)rGnamerBrBrC _unsupported?szIOBase._unsupportedrcCs|jddS)a$Change stream position. Change the stream position to byte offset pos. Argument pos is interpreted relative to the position indicated by whence. Values for whence are ints: * 0 -- start of stream (the default); offset should be zero or positive * 1 -- current stream position; offset may be negative * 2 -- end of stream; offset is usually negative Some operating systems / file systems could provide additional values. Return an int indicating the new absolute position. seekN)rW)rGposwhencerBrBrCrXFsz IOBase.seekcCs|jddS)z5Return an int indicating the current stream position.rr )rX)rGrBrBrCtellVsz IOBase.tellNcCs|jddS)zTruncate file to size bytes. Size defaults to the current IO position as reported by tell(). Return the new size. truncateN)rW)rGrYrBrBrCr\ZszIOBase.truncatecCs|jdS)zuFlush write buffers, if applicable. This is not implemented for read-only and non-blocking streams. N) _checkClosed)rGrBrBrCflushdsz IOBase.flushFc Cs(|js$z|jWdd|_XdS)ziFlush and close the IO object. This method has no effect if the file is already closed. NT)_IOBase__closedr^)rGrBrBrCr2ns z IOBase.closec Csy|jWnYnXdS)zDestructor. Calls close().N)r2)rGrBrBrC__del__yszIOBase.__del__cCsdS)zReturn a bool indicating whether object supports random access. If False, seek(), tell() and truncate() will raise OSError. This method may need to do a test seek(). FrB)rGrBrBrCseekableszIOBase.seekablecCs.|js*t|dkr!dn|dS)zEInternal: raise UnsupportedOperation if file is not seekable NzFile or stream is not seekable.)rarS)rGmsgrBrBrC_checkSeekables zIOBase._checkSeekablecCsdS)zvReturn a bool indicating whether object was opened for reading. If False, read() will raise OSError. FrB)rGrBrBrCreadableszIOBase.readablecCs.|js*t|dkr!dn|dS)zEInternal: raise UnsupportedOperation if file is not readable NzFile or stream is not readable.)rdrS)rGrbrBrBrC_checkReadables zIOBase._checkReadablecCsdS)zReturn a bool indicating whether object was opened for writing. If False, write() and truncate() will raise OSError. FrB)rGrBrBrCwritableszIOBase.writablecCs.|js*t|dkr!dn|dS)zEInternal: raise UnsupportedOperation if file is not writable NzFile or stream is not writable.)rfrS)rGrbrBrBrC_checkWritables zIOBase._checkWritablecCs|jS)zclosed: bool. True iff the file has been closed. For backwards compatibility, this is a property, not a predicate. )r_)rGrBrBrCclosedsz IOBase.closedcCs+|jr't|dkrdn|dS)z7Internal: raise a ValueError if file is closed NzI/O operation on closed file.)rhr )rGrbrBrBrCr]s zIOBase._checkClosedcCs|j|S)zCContext management protocol. Returns self (an instance of IOBase).)r])rGrBrBrC __enter__s zIOBase.__enter__cGs|jdS)z+Context management protocol. Calls close()N)r2)rGrPrBrBrC__exit__szIOBase.__exit__cCs|jddS)zReturns underlying file descriptor (an int) if one exists. An OSError is raised if the IO object does not use a file descriptor. r)N)rW)rGrBrBrCr)sz IOBase.filenocCs|jdS)z{Return a bool indicating whether this is an 'interactive' stream. Return False if it can't be determined. F)r])rGrBrBrCr%s z IOBase.isattyr cstdr'fdd}n dd}dkrHd nttsctdt}xUdkst|krj|}|sP||7}|jd roPqoWt|S) aNRead and return a line of bytes from the stream. If size is specified, at most size bytes will be read. Size should be an int. The line terminator is always b'\n' for binary files; for text files, the newlines argument to open can be used to select the line terminator(s) recognized. peekcsWjd}|sdS|jddp5t|}dkrSt|}|S)Nr s r)rkfindrmin)Z readaheadn)rGsizerBrC nreadaheads z#IOBase.readline..nreadaheadcSsdS)Nr rBrBrBrBrCrpsNr zsize must be an integerrs r) hasattrrrr bytearrayrreadendswithr)rGrorpresrrB)rGrorCreadlines      ! zIOBase.readlinecCs|j|S)N)r])rGrBrBrC__iter__s zIOBase.__iter__cCs|j}|st|S)N)rv StopIteration)rGlinerBrBrC__next__ s zIOBase.__next__cCsm|dks|dkr"t|Sd}g}x8|D]0}|j||t|7}||kr5Pq5W|S)zReturn a list of lines from the stream. hint can be specified to control the number of lines read: no more lines will be read if the total size (in bytes/characters) of all lines so far exceeds hint. Nr)listappendr)rGZhintrnlinesryrBrBrC readliness    zIOBase.readlinescCs,|jx|D]}|j|qWdS)N)r]write)rGr}ryrBrBrC writelines"s  zIOBase.writelinesr)rKrLrMrFrWrXr[r\r^r_r2r`rarcrdrerfrgpropertyrhr]rirjr)r%rvrwrzr~rrBrBrBrCrTs4            %  rT metaclassc@sIeZdZdZd ddZddZddZd d Zd S) RawIOBasezBase class for raw binary I/O.r cCsp|dkrd}|dkr(|jSt|j}|j|}|dkrYdS||d=t|S)zRead and return up to size bytes, where size is an int. Returns an empty bytes object on EOF, or None if the object is set not to block and has no data to read. Nr rr)readallrr __index__readintor)rGrorrnrBrBrCrs8s     zRawIOBase.readcCsHt}x$|jt}|s"P||7}q W|r@t|S|SdS)z+Read until EOF, using multiple read() call.N)rrrsr&r)rGrudatarBrBrCrIs  zRawIOBase.readallcCs|jddS)zRead bytes into a pre-allocated bytes-like object b. Returns an int representing the number of bytes read (0 for EOF), or None if the object is set not to block and has no data to read. rN)rW)rGrrBrBrCrWszRawIOBase.readintocCs|jddS)zWrite the given buffer to the IO stream. Returns the number of bytes written, which may be less than the length of b in bytes. rN)rW)rGrrBrBrCr_szRawIOBase.writeNr)rKrLrMrFrsrrrrBrBrBrCr*s    r)r$c@speZdZdZdddZdddZddZd d Zd d Zd dZ ddZ dS)BufferedIOBaseaBase class for buffered IO objects. The main difference with RawIOBase is that the read() method supports omitting the size argument, and does not have a default implementation that defers to readinto(). In addition, read(), readinto() and write() may raise BlockingIOError if the underlying raw stream is in non-blocking mode and not ready; unlike their raw counterparts, they will never return None. A typical implementation should not inherit from a RawIOBase implementation, but wrap one. NcCs|jddS)aRead and return up to size bytes, where size is an int. If the argument is omitted, None, or negative, reads and returns all data until EOF. If the argument is positive, and the underlying raw stream is not 'interactive', multiple raw reads may be issued to satisfy the byte count (unless EOF is reached first). But for interactive raw streams (XXX and for pipes?), at most one raw read will be issued, and a short result does not imply that EOF is imminent. Returns an empty bytes array on EOF. Raises BlockingIOError if the underlying raw stream has no data at the moment. rsN)rW)rGrorBrBrCrs}szBufferedIOBase.readcCs|jddS)zaRead up to size bytes with at most one read() system call, where size is an int. read1N)rW)rGrorBrBrCrszBufferedIOBase.read1cCs|j|ddS)afRead bytes into a pre-allocated bytes-like object b. Like read(), this may issue multiple reads to the underlying raw stream, unless the latter is 'interactive'. Returns an int representing the number of bytes read (0 for EOF). Raises BlockingIOError if the underlying raw stream has no data at the moment. rF) _readinto)rGrrBrBrCrs zBufferedIOBase.readintocCs|j|ddS)zRead bytes into buffer *b*, using at most one system call Returns an int representing the number of bytes read (0 for EOF). Raises BlockingIOError if the underlying raw stream has no data at the moment. rT)r)rGrrBrBrC readinto1s zBufferedIOBase.readinto1cCs}t|tst|}|jd}|rH|jt|}n|jt|}t|}||d|<|S)NB)r memoryviewcastrrrs)rGrrrrnrBrBrCrs  zBufferedIOBase._readintocCs|jddS)aWrite the given bytes buffer to the IO stream. Return the number of bytes written, which is always the length of b in bytes. Raises BlockingIOError if the buffer is full and the underlying raw stream cannot accept more data at the moment. rN)rW)rGrrBrBrCrs zBufferedIOBase.writecCs|jddS)z Separate the underlying raw stream from the buffer and return it. After the raw stream has been detached, the buffer is in an unusable state. detachN)rW)rGrBrBrCrszBufferedIOBase.detach) rKrLrMrFrsrrrrrrrBrBrBrCrls    rc@seZdZdZddZdddZddZd d d Zd d ZddZ ddZ ddZ e ddZ e ddZe ddZe ddZddZddZd d!Zd"d#Zd S)$_BufferedIOMixinzA mixin implementation of BufferedIOBase with an underlying raw stream. This passes most requests on to the underlying raw stream. It does *not* provide implementations of read(), readinto() or write(). cCs ||_dS)N)_raw)rGr=rBrBrC__init__sz_BufferedIOMixin.__init__rcCs1|jj||}|dkr-td|S)Nrz#seek() returned an invalid position)r=rXr+)rGrYrZZ new_positionrBrBrCrXs  z_BufferedIOMixin.seekcCs+|jj}|dkr'td|S)Nrz#tell() returned an invalid position)r=r[r+)rGrYrBrBrCr[s  z_BufferedIOMixin.tellNcCs2|j|dkr"|j}|jj|S)N)r^r[r=r\)rGrYrBrBrCr\s   z_BufferedIOMixin.truncatecCs&|jrtd|jjdS)Nzflush of closed file)rhr r=r^)rGrBrBrCr^s  z_BufferedIOMixin.flushc Cs<|jdk r8|j r8z|jWd|jjXdS)N)r=rhr^r2)rGrBrBrCr2sz_BufferedIOMixin.closecCs;|jdkrtd|j|j}d|_|S)Nzraw stream already detached)r=r r^r)rGr=rBrBrCr s     z_BufferedIOMixin.detachcCs |jjS)N)r=ra)rGrBrBrCrasz_BufferedIOMixin.seekablecCs|jS)N)r)rGrBrBrCr=sz_BufferedIOMixin.rawcCs |jjS)N)r=rh)rGrBrBrCrhsz_BufferedIOMixin.closedcCs |jjS)N)r=rV)rGrBrBrCrV sz_BufferedIOMixin.namecCs |jjS)N)r=r1)rGrBrBrCr1$sz_BufferedIOMixin.modecCstdj|jjdS)Nz can not serialize a '{0}' object)rformatrUrK)rGrBrBrC __getstate__(s z_BufferedIOMixin.__getstate__c Csa|jj}|jj}y |j}Wn"tk rIdj||SYnXdj|||SdS)Nz<{}.{}>z<{}.{} name={!r}>)rUrLrMrV Exceptionr)rGmodnameZclsnamerVrBrBrC__repr__,s    z_BufferedIOMixin.__repr__cCs |jjS)N)r=r))rGrBrBrCr)8sz_BufferedIOMixin.filenocCs |jjS)N)r=r%)rGrBrBrCr%;sz_BufferedIOMixin.isatty)rKrLrMrFrrXr[r\r^r2rrarr=rhrVr1rrr)r%rBrBrBrCrs"        rcseZdZdZdddZddZddZd d Zfd d Zdd dZ ddZ ddZ dddZ ddZ dddZddZddZddZS) BytesIOzsz"FileIO.__init__..rzKMust have exactly one of create/read/write/append mode and at most one plusrTrrrO_BINARYZ O_NOINHERIT O_CLOEXECz'Cannot use closefd=False with file nameizexpected integer from openerzNegative file descriptorFr*rr),_fd_closefdr'r2rfloatrrr rrsumcount_created _writableO_EXCLO_CREAT _readableO_TRUNC _appendingO_APPENDO_RDWRO_RDONLYO_WRONLYgetattrrDr+set_inheritabler(statS_ISDIRst_modeIsADirectoryErrorrZEISDIRrr,_blksizer&_setmoderrVlseekr ) rGr3r1r8rfdflagsZnoinherit_flagZowned_fdZfdfstatrBrBrCrvs     4                                zFileIO.__init__cCsY|jdkrU|jrU|j rUddl}|jd|ftdd|jdS)Nrzunclosed file %r stacklevelr )rrrhr!r"ResourceWarningr2)rGr!rBrBrCr`s " zFileIO.__del__cCstd|jjdS)Nzcannot serialize '%s' object)rrUrK)rGrBrBrCrszFileIO.__getstate__c Csd|jj|jjf}|jr-d|Sy |j}Wn/tk rkd||j|j|jfSYnXd|||j|jfSdS)Nz%s.%sz <%s [closed]>z<%s fd=%d mode=%r closefd=%r>z<%s name=%r mode=%r closefd=%r>) rUrLrMrhrVr,rr1r)rG class_namerVrBrBrCrs    zFileIO.__repr__cCs|jstddS)NzFile not open for reading)rrS)rGrBrBrCres zFileIO._checkReadablecCs|jstddS)NzFile not open for writing)rrS)rGrbrBrBrCrgs zFileIO._checkWritablec Csj|j|j|dks,|dkr6|jSytj|j|SWntk redSYnXdS)zRead at most size bytes, returned as bytes. Only makes one system call, so less data may be returned than requested In non-blocking mode, returns None if no data is available. Return an empty bytes object at EOF. Nr)r]rerr'rsrr)rGrorBrBrCrs s    z FileIO.readcCs|j|jt}yKtj|jdt}tj|jj}||krd||d}Wnt k ryYnXt }xt ||krt |}|t |t7}|t |}ytj |j|}Wntk r|rPdSYnX|sP||7}qWt|S)zRead all data from the file, returned as bytes. In non-blocking mode, returns as much as is immediately available, or None if no data is available. Return an empty bytes object at EOF. rr N)r]rer&r'rrrr(st_sizer+rrrrrsrr)rGbufsizerYendr>rnrrBrBrCrs4        zFileIO.readallcCsJt|jd}|jt|}t|}||d|<|S)zSame as RawIOBase.readinto().rN)rrrsr)rGrmrrnrBrBrCr>s  zFileIO.readintoc CsH|j|jytj|j|SWntk rCdSYnXdS)aWrite bytes b to file, return number written. Only makes one system call, so not all of the data may be written. The number of bytes actually written is returned. In non-blocking mode, returns None if the write would block. N)r]rgr'rrr)rGrrBrBrCrFs    z FileIO.writecCs;t|trtd|jtj|j||S)aMove to new file position. Argument offset is a byte count. Optional argument whence defaults to SEEK_SET or 0 (offset from start of file, offset should be >= 0); other values are SEEK_CUR or 1 (move relative to current position, positive or negative), and SEEK_END or 2 (move relative to end of file, usually negative, although many platforms allow seeking beyond the end of a file). Note that not all file objects are seekable. zan integer is required)rrrr]r'rr)rGrYrZrBrBrCrXTs   z FileIO.seekcCs |jtj|jdtS)zYtell() -> int. Current file position. Can raise OSError for non seekable files.r)r]r'rrr)rGrBrBrCr[ds z FileIO.tellcCsC|j|j|dkr,|j}tj|j||S)zTruncate the file to at most size bytes. Size defaults to the current file position, as returned by tell(). The current file position is changed to the value of size. N)r]rgr[r' ftruncater)rGrorBrBrCr\ks     zFileIO.truncatec s;|js7z|jr%tj|jWdtjXdS)zClose the file. A closed file cannot be used for further I/O operations. close() may be called more than once without error. N)rhrr'r2rr)rG)rUrBrCr2xs   z FileIO.closec CsU|j|jdkrNy|jWntk rDd|_Yn Xd|_|jS)z$True if file supports random-access.NFT)r] _seekabler[r+)rGrBrBrCras   zFileIO.seekablecCs|j|jS)z'True if file was opened in a read mode.)r]r)rGrBrBrCrds zFileIO.readablecCs|j|jS)z(True if file was opened in a write mode.)r]r)rGrBrBrCrfs zFileIO.writablecCs|j|jS)z3Return the underlying file descriptor (an integer).)r]r)rGrBrBrCr)s z FileIO.filenocCs|jtj|jS)z.True if the file is connected to a TTY device.)r]r'r%r)rGrBrBrCr%s z FileIO.isattycCs|jS)z6True if the file descriptor will be closed by close().)r)rGrBrBrCr8szFileIO.closefdcCs_|jr|jrdSdSn>|jr:|jr3dSdSn!|jrW|jrPdSdSndSdS) zString giving the file modezxb+xbzab+abzrb+rbwbN)rrrr)rGrBrBrCr1s      z FileIO.moder)!rKrLrMrrrrrrrrr`rrrergrsrrrrrXr[r\r2rardrfr)r%rr8r1rBrB)rUrCr$ms8 u     #        r$c@seZdZdZdddZddZddd Zd d Zd d Ze ddZ e ddZ e ddZ dS) TextIOBasezBase class for text I/O. This class provides a character and line based interface to stream I/O. There is no readinto method because Python's character strings are immutable. There is no public constructor. r cCs|jddS)zRead at most size characters from stream, where size is an int. Read from underlying buffer until we have size characters or we hit EOF. If size is negative or omitted, read until EOF. Returns a string. rsN)rW)rGrorBrBrCrsszTextIOBase.readcCs|jddS)z.Write string s to stream and returning an int.rN)rW)rGsrBrBrCrszTextIOBase.writeNcCs|jddS)z*Truncate size to pos, where pos is an int.r\N)rW)rGrYrBrBrCr\szTextIOBase.truncatecCs|jddS)z_Read until newline or EOF. Returns an empty string if EOF is hit immediately. rvN)rW)rGrBrBrCrvszTextIOBase.readlinecCs|jddS)z Separate the underlying buffer from the TextIOBase and return it. After the underlying buffer has been detached, the TextIO is in an unusable state. rN)rW)rGrBrBrCrszTextIOBase.detachcCsdS)zSubclasses should override.NrB)rGrBrBrCr5szTextIOBase.encodingcCsdS)zLine endings translated so far. Only line endings translated during reading are considered. Subclasses should override. NrB)rGrBrBrCnewlinesszTextIOBase.newlinescCsdS)zMError setting of the decoder or encoder. Subclasses should override.NrB)rGrBrBrCr6szTextIOBase.errorsr) rKrLrMrFrsrr\rvrrr5rr6rBrBrBrCrs     rc@s|eZdZdZdddZdddZdd Zd d Zd d ZdZ dZ dZ e ddZ dS)IncrementalNewlineDecodera+Codec used when reading a file in universal newlines mode. It wraps another incremental decoder, translating \r\n and \r into \n. It also records the types of newlines encountered. When used with translate=False, it ensures that the newline sequence is returned in one piece. strictcCs>tjj|d|||_||_d|_d|_dS)Nr6rF)codecsIncrementalDecoderr translatedecoderseennl pendingcr)rGrrr6rBrBrCr s    z"IncrementalNewlineDecoder.__init__FcCs+|jdkr|}n|jj|d|}|jrX|sE|rXd|}d|_|jdr| r|dd}d|_|jd}|jd|}|jd|}|j|o|j|o|jB|o|jBO_|j r'|r|j dd}|r'|j dd}|S) Nfinal Fr Tz  r) rdecoderrtrr_LF_CR_CRLFrreplace)rGinputroutputZcrlfZcrZlfrBrBrCrs(    + z IncrementalNewlineDecoder.decodecCsZ|jdkrd}d}n|jj\}}|dK}|jrP|dO}||fS)Nrrr )rgetstater)rGrflagrBrBrCr1s    z"IncrementalNewlineDecoder.getstatecCsL|\}}t|d@|_|jdk rH|jj||d?fdS)Nr )boolrrsetstate)rGstaterrrBrBrCr <s z"IncrementalNewlineDecoder.setstatecCs2d|_d|_|jdk r.|jjdS)NrF)rrrreset)rGrBrBrCr Bs  zIncrementalNewlineDecoder.resetr r c Cs d|jS) Nrr rrrr rr rrr )Nrrrr rrr)r)rGrBrBrCrLsz"IncrementalNewlineDecoder.newlinesN)rKrLrMrFrrrr r rrrrrrBrBrBrCrs   rc@seZdZdZdZdddddddZddZed d Zed d Z ed dZ eddZ ddZ ddZ ddZddZddZeddZeddZdd Zd!d"Zd#d$Zd%d&Zd'd(Zd)d*Zdd+d,Zd-d.Zd/d0Zd1d1d1d1d2d3Zd4d5Zd6d7Zdd8d9Zd:d;Z d1d<d=Z!dd>d?Z"d@dAZ#ddBdCZ$edDdEZ%dS)Fr0aCharacter and line based layer over a BufferedIOBase object, buffer. encoding gives the name of the encoding that the stream will be decoded or encoded with. It defaults to locale.getpreferredencoding(False). errors determines the strictness of encoding and decoding (see the codecs.register) and defaults to "strict". newline can be None, '', '\n', '\r', or '\r\n'. It controls the handling of line endings. If it is None, universal newlines is enabled. With this enabled, on input, the lines endings '\n', '\r', or '\r\n' are translated to '\n' before being returned to the caller. Conversely, on output, '\n' is translated to the system default line separator, os.linesep. If newline is any other of its legal values, that newline becomes the newline when the file is read and it is returned untranslated. On output, '\n' is converted to the newline. If line_buffering is True, a call to flush is implied when a call to write contains a newline character. iNFc Cs|dk r5t|t r5tdt|f|dkrTtd|f|dkrytj|j}Wntt fk rYnX|dkryddl }Wnt k rd}YnX|j d }t|tstd |t j|js!d }t|||dkr6d }nt|tsUtd |||_||_||_||_| |_|dk|_||_|dk|_|ptj|_d|_d|_d|_d|_d|_|j j!|_"|_#t$|j d|_%d|_&|j"r||j'r||j j(} | dkr|y|j)j*dWntk r{YnXdS)Nzillegal newline type: %rrrr zillegal newline value: %rrasciiFzinvalid encoding: %rzG%r is not a text encoding; use codecs.open() to handle arbitrary codecsrzinvalid errors: %rrg)Nrrrr)+rrrtyper r'device_encodingr)r,rSlocale ImportErrorgetpreferredencodingrlookup_is_text_encoding LookupErrorr_line_buffering _encoding_errors_readuniversal_readtranslate_readnl_writetranslatelinesep_writenl_encoder_decoder_decoded_chars_decoded_chars_used _snapshotrArar_tellingrq _has_read1 _b2cratiorfr[ _get_encoderr ) rGrAr5r6r7r? write_throughrrbpositionrBrBrCrvs`                     zTextIOWrapper.__init__cCsdj|jj|jj}y |j}Wntk r?YnX|dj|7}y |j}Wntk rtYnX|dj|7}|dj|jS)Nz<{}.{}z name={0!r}z mode={0!r}z encoding={0!r}>)rrUrLrMrVrr1r5)rGr>rVr1rBrBrCrs    zTextIOWrapper.__repr__cCs|jS)N)r)rGrBrBrCr5szTextIOWrapper.encodingcCs|jS)N)r)rGrBrBrCr6szTextIOWrapper.errorscCs|jS)N)r)rGrBrBrCr?szTextIOWrapper.line_bufferingcCs|jS)N)r)rGrBrBrCrAszTextIOWrapper.buffercCs|jrtd|jS)NzI/O operation on closed file.)rhr r)rGrBrBrCras  zTextIOWrapper.seekablecCs |jjS)N)rArd)rGrBrBrCrdszTextIOWrapper.readablecCs |jjS)N)rArf)rGrBrBrCrfszTextIOWrapper.writablecCs|jj|j|_dS)N)rAr^rr*)rGrBrBrCr^s zTextIOWrapper.flushc Cs<|jdk r8|j r8z|jWd|jjXdS)N)rArhr^r2)rGrBrBrCr2szTextIOWrapper.closecCs |jjS)N)rArh)rGrBrBrCrhszTextIOWrapper.closedcCs |jjS)N)rArV)rGrBrBrCrVszTextIOWrapper.namecCs |jjS)N)rAr))rGrBrBrCr)szTextIOWrapper.filenocCs |jjS)N)rAr%)rGrBrBrCr%szTextIOWrapper.isattycCs|jrtdt|ts:td|jjt|}|jsX|j oad|k}|r|jr|j dkr|j d|j }|j p|j }|j|}|jj||j r|sd|kr|jd|_|jr|jj|S)zWrite data, where s is a strzwrite to closed filezcan't write %s to text streamrrN)rhr rrrrUrKrr"rr$rr%r-encoderArr^r)r&r )rGrlengthZhaslfencoderrrBrBrCrs$       zTextIOWrapper.writecCs+tj|j}||j|_|jS)N)rgetincrementalencoderrrr%)rGZ make_encoderrBrBrCr-szTextIOWrapper._get_encodercCsItj|j}||j}|jr<t||j}||_|S)N)rgetincrementaldecoderrrrrr r&)rGZ make_decoderrrBrBrC _get_decoders   zTextIOWrapper._get_decodercCs||_d|_dS)zSet the _decoded_chars buffer.rN)r'r()rGcharsrBrBrC_set_decoded_chars's z TextIOWrapper._set_decoded_charscCs[|j}|dkr+|j|d}n|j|||}|jt|7_|S)z'Advance into the _decoded_chars buffer.N)r(r'r)rGrnoffsetr6rBrBrC_get_decoded_chars,s   z TextIOWrapper._get_decoded_charscCs.|j|krtd|j|8_dS)z!Rewind the _decoded_chars buffer.z"rewind decoded_chars out of boundsN)r(AssertionError)rGrnrBrBrC_rewind_decoded_chars6s z#TextIOWrapper._rewind_decoded_charscCs|jdkrtd|jr9|jj\}}|jrZ|jj|j}n|jj|j}| }|jj ||}|j ||rt |t |j |_ n d|_ |jr|||f|_| S)zQ Read and decode the next chunk of data from the BufferedReader. Nz no decoderg)r&r r*rr+rAr _CHUNK_SIZErsrr7rr'r,r))rG dec_buffer dec_flags input_chunkeofZ decoded_charsrBrBrC _read_chunk<s       zTextIOWrapper._read_chunkrcCs*||d>B|d>B|d>Bt|d>BS)N@)r)rGr/r> bytes_to_feedneed_eof chars_to_skiprBrBrC _pack_cookiefszTextIOWrapper._pack_cookiecCsgt|d\}}t|d\}}t|d\}}t|d\}}|||||fS)Nr rBllll)divmod)rGZbigintrestr/r>rFrGrHrBrBrC_unpack_cookieps zTextIOWrapper._unpack_cookiecCs|jstd|js*td|j|jj}|j}|dksg|jdkr|j r|t d|S|j\}}|t |8}|j }|dkr|j ||S|j}zt|j|}d}x|dkr|jd|ft |j|d|} | |kr{|j\} } | sb| }|| 8}P|t | 8}d}q||8}|d}qWd}|jd|f||} |} |dkr|j | | Sd}d}d}xt|t |D]}|d7}|t |j|||d7}|j\}}| r||kr| |7} ||8}|dd} }}||krPqW|t |jddd 7}d}||krtd |j | | |||SWd|j|XdS) Nz!underlying stream is not seekablez(telling position disabled by next() callzpending decoded textrr rr rTz'can't reconstruct logical file position)rrSr*r+r^rAr[r&r)r'r:rr(rIrrr,r rrange)rGr/rr>Z next_inputrH saved_stateZ skip_bytesZ skip_backrnrd start_posZ start_flagsZ bytes_fedrGZ chars_decodedir=rBrBrCr[wsv                  '     zTextIOWrapper.tellcCs2|j|dkr"|j}|jj|S)N)r^r[rAr\)rGrYrBrBrCr\s   zTextIOWrapper.truncatecCs;|jdkrtd|j|j}d|_|S)Nzbuffer is already detached)rAr r^r)rGrArBrBrCrs     zTextIOWrapper.detachc smfdd}jr'tdjs<td|dkrr|dkr`tdd}j}|dkr|dkrtd jjjdd}jd d_ j rj j |||S|dkrtd |f|dkr-td |fjj |\}}}}} jj|jd d_ |dkrj rj j nRj s|s| rj pj _ j jd |f|d f_ | r_jj|} jj j| ||| f_ tj| krVtd| _|||S)Nc sXyjpj}Wntk r-Yn'X|dkrJ|jdn |jdS)z9Reset the encoder (merely useful for proper BOM handling)rN)r%r-rr r )r/r2)rGrBrC_reset_encoders  z*TextIOWrapper.seek.._reset_encoderztell on closed filez!underlying stream is not seekabler rz#can't do nonzero cur-relative seeksr z#can't do nonzero end-relative seeksrzunsupported whence (%r)znegative seek position %rrz#can't restore logical file position)rhr rrSr[r^rArXr7r)r&r rLr5r rsrrr'r+r() rGZcookierZrRr/rPr>rFrGrHr?rB)rGrCrXs\                         zTextIOWrapper.seekcCs(|j|dkrd}|jp.|j}y |jWn4tk rr}ztd|WYdd}~XnX|dkr|j|j|jj dd}|j dd|_ |Sd}|j|}xGt ||kr| r|j }||j|t |7}qW|SdS) Nr zan integer is requiredrrTrFr)rer&r5rr,rr9rrArsr7r)rrA)rGrorrr>r@rBrBrCrs3 s(   "     !zTextIOWrapper.readcCs:d|_|j}|s6d|_|j|_t|S)NF)r*rvr)rrx)rGryrBrBrCrzL s    zTextIOWrapper.__next__cCsn|jrtd|dkr*d }nt|tsEtd|j}d}|jsj|jd}}x|jr|j d|}|dkr|d}Pqt |}n|j r}|j d|}|j d|}|d kr|d krt |}qz|d}Pq|d kr7|d}Pq||krQ|d}Pq||dkro|d}Pq|d}Pn2|j |j }|dkr|t |j }P|dkrt ||kr|}Px|j r|jrPqW|jr ||j7}qw|jdd|_|SqwW|dkrI||krI|}|jt |||d|S) Nzread from closed filer zsize must be an integerrrrr rrrrr)rhr rrrr9r&r5r rlrrr!rAr'r7r)r;)rGrorystartrYendposZnlposZcrposrBrBrCrvU sp                           zTextIOWrapper.readlinecCs|jr|jjSdS)N)r&r)rGrBrBrCr szTextIOWrapper.newlines)&rKrLrMrFr<rrrr5r6r?rArardrfr^r2rhrVr)r%rr-r5r7r9r;rArIrLr[r\rrXrsrzrvrrBrBrBrCr0YsH  E             *  c K Xr0csveZdZdZddfddZddZdd Zed d Zed d Z ddZ S)StringIOzText I/O implementation using an in-memory buffer. The initial_value argument sets the value of object. The newline argument is like the one of TextIOWrapper's constructor. rrcstt|jtddddd||dkr@d|_|dk rt|tsytdjt |j |j ||j ddS) Nr5zutf-8r6 surrogatepassr7Fz*initial_value must be str or None, not {0}r) rrUrrr"rrrrrrKrrX)rGZ initial_valuer7)rUrBrCr s     zStringIO.__init__c Csj|j|jp|j}|j}|jz |j|jjddSWd|j|XdS)NrT) r^r&r5rr rrArr )rGrZ old_staterBrBrCr s    zStringIO.getvaluecCs tj|S)N)objectr)rGrBrBrCr szStringIO.__repr__cCsdS)NrB)rGrBrBrCr6 szStringIO.errorscCsdS)NrB)rGrBrBrCr5 szStringIO.encodingcCs|jddS)Nr)rW)rGrBrBrCr szStringIO.detach) rKrLrMrFrrrrr6r5rrBrB)rUrCrU s  rU)6rFr'abcrrarrayrsys_threadrrr _dummy_threadplatformmsvcrtrriorrrr rrqaddr SEEK_DATAr&rrDrErNrSr,r+r ABCMetarTregisterr_ior$rrrr/r.rr-rrrr0rUrBrBrBrCsl         "      = giZIJTAU[