404

[ Avaa Bypassed ]




Upload:

Command:

elspacio@3.141.201.46: ~ $
�
f f� �@s�dZddlZddlZddlZddlZyddlmZWn"ek
rnddl	mZYnXddl
Z
ddl
mZmZm
Z
mZdddhZeed�r�ejej�ejej�ndd	ZeZd
dddddddd
�ZGdd�d�ZGdd�d�Zy
e
jZWn+ek
rpGdd�dee�ZYnXGdd�ddej�Ze
jje�Gdd�de�Z e
j je �ddl!m"Z"e je"�Gdd�de�Z#e
j#je#�Gdd�de#�Z$Gdd�de#�Z%Gd d!�d!e$�Z&Gd"d#�d#e$�Z'Gd$d%�d%e#�Z(Gd&d'�d'e'e&�Z)Gd(d)�d)e�Z*e
j*je*�Gd*d+�d+ej+�Z,Gd,d-�d-e*�Z-Gd.d/�d/e-�Z.dS)0z)
Python implementation of the io module.
�N)�
allocate_lock)�__all__�SEEK_SET�SEEK_CUR�SEEK_END���	SEEK_HOLE�i�rTcCs�t|tttf�s+td|��nt|t�sMtd|��nt|t�sotd|��n|dk	r�t|t�r�td|��n|dk	r�t|t�r�td|��nt|�}|td�st|�t|�krtd|��nd|k}	d	|k}
d
|k}d|k}d|k}
d
|k}d|k}d|kr�|	s�|s�|r�td��nddl}|j	dt
d�d}
n|r�|r�td��n|	|
||dkr�td��n|	p|
p|p|s&td��n|rG|dk	rGtd��n|rh|dk	rhtd��n|r�|dk	r�td��nt||	r�dp�d|
r�d	p�d|r�d
p�d|r�dp�d|
r�dp�d|d|�}|}y}d}|dks |dkr/|j�r/d"}d}n|dkr�t
}ytj|j��j}Wnttfk
rwYq�X|dkr�|}q�n|dkr�td��n|dkr�|r�|Std ��n|
r�t||�}nL|	s�|s�|rt||�}n(|
r$t||�}ntd!|��|}|rD|St|||||�}|}||_|SWn|j��YnXdS)#a�Open 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+tU�xr�w�a�+�t�b�Uz$can't use U and writing mode at oncerz'U' mode is deprecatedrTz'can't have text and binary mode at oncerz)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 argument��openerFzinvalid buffering sizezcan't have unbuffered text I/Ozunknown mode: %r���)�
isinstance�str�bytes�int�	TypeError�set�len�
ValueError�warnings�warn�DeprecationWarning�FileIO�isatty�DEFAULT_BUFFER_SIZE�os�fstat�fileno�
st_blksize�OSError�AttributeError�BufferedRandom�BufferedWriter�BufferedReader�
TextIOWrapper�mode�close)�filer.�	buffering�encoding�errors�newline�closefdrZmodesZcreatingZreadingZwritingZ	appendingZupdating�textZbinaryr�raw�result�line_bufferingZbs�buffer�r;�*/opt/alt/python34/lib64/python3.4/_pyio.py�open"s�{(	
	?$		
r=c@s"eZdZdZdd�ZdS)�
DocDescriptorz%Helper for builtins.open.__doc__
    cCsdtjS)Nz\open(file, mode='r', buffering=-1, encoding=None, errors=None, newline=None, closefd=True)

)r=�__doc__)�self�obj�typr;r;r<�__get__�szDocDescriptor.__get__N)�__name__�
__module__�__qualname__r?rCr;r;r;r<r>�sr>c@s+eZdZdZe�Zdd�ZdS)�OpenWrapperz�Wrapper 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/pythonrun.c.
    cOs
t||�S)N)r=)�cls�args�kwargsr;r;r<�__new__szOpenWrapper.__new__N)rDrErFr?r>rKr;r;r;r<rG�s	rGc@seZdZdS)�UnsupportedOperationN)rDrErFr;r;r;r<rLsrLc@sZeZdZdZdd�Zddd�Zdd�Zd	d
d�Zdd
�ZdZ	dd�Z
dd�Zdd�Zd	dd�Z
dd�Zd	dd�Zdd�Zd	dd�Zedd ��Zd	d!d"�Zd#d$�Zd%d&�Zd'd(�Zd)d*�Zd6d,d-�Zd.d/�Zd0d1�Zd	d2d3�Zd4d5�Zd	S)7�IOBasea-The 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. bytearrays are accepted too, and in some cases (such as
    readinto) needed. 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|f��dS)z@Internal: raise an OSError exception for unsupported operations.z%s.%s() not supportedN)rL�	__class__rD)r@�namer;r;r<�_unsupported7szIOBase._unsupportedrcCs|jd�dS)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)rP)r@�pos�whencer;r;r<rQ>szIOBase.seekcCs|jdd�S)z5Return an int indicating the current stream position.rr)rQ)r@r;r;r<�tellNszIOBase.tellNcCs|jd�dS)z�Truncate file to size bytes.

        Size defaults to the current IO position as reported by tell().  Return
        the new size.
        �truncateN)rP)r@rRr;r;r<rURszIOBase.truncatecCs|j�dS)zuFlush write buffers, if applicable.

        This is not implemented for read-only and non-blocking streams.
        N)�_checkClosed)r@r;r;r<�flush\szIOBase.flushFcCs+|js'z|j�Wdd|_XndS)ziFlush and close the IO object.

        This method has no effect if the file is already closed.
        NT)�_IOBase__closedrW)r@r;r;r<r/fs	zIOBase.closec	Csy|j�WnYnXdS)zDestructor.  Calls close().N)r/)r@r;r;r<�__del__qszIOBase.__del__cCsdS)z�Return a bool indicating whether object supports random access.

        If False, seek(), tell() and truncate() will raise UnsupportedOperation.
        This method may need to do a test seek().
        Fr;)r@r;r;r<�seekableszIOBase.seekablecCs1|j�s-t|dkr!dn|��ndS)zEInternal: raise UnsupportedOperation if file is not seekable
        NzFile or stream is not seekable.)rZrL)r@�msgr;r;r<�_checkSeekable�szIOBase._checkSeekablecCsdS)z�Return a bool indicating whether object was opened for reading.

        If False, read() will raise UnsupportedOperation.
        Fr;)r@r;r;r<�readable�szIOBase.readablecCs1|j�s-t|dkr!dn|��ndS)zEInternal: raise UnsupportedOperation if file is not readable
        NzFile or stream is not readable.)r]rL)r@r[r;r;r<�_checkReadable�szIOBase._checkReadablecCsdS)z�Return a bool indicating whether object was opened for writing.

        If False, write() and truncate() will raise UnsupportedOperation.
        Fr;)r@r;r;r<�writable�szIOBase.writablecCs1|j�s-t|dkr!dn|��ndS)zEInternal: raise UnsupportedOperation if file is not writable
        NzFile or stream is not writable.)r_rL)r@r[r;r;r<�_checkWritable�szIOBase._checkWritablecCs|jS)z�closed: bool.  True iff the file has been closed.

        For backwards compatibility, this is a property, not a predicate.
        )rX)r@r;r;r<�closed�sz
IOBase.closedcCs.|jr*t|dkrdn|��ndS)z8Internal: raise an ValueError if file is closed
        NzI/O operation on closed file.)rar)r@r[r;r;r<rV�s	zIOBase._checkClosedcCs|j�|S)zCContext management protocol.  Returns self (an instance of IOBase).)rV)r@r;r;r<�	__enter__�s
zIOBase.__enter__cGs|j�dS)z+Context management protocol.  Calls close()N)r/)r@rIr;r;r<�__exit__�szIOBase.__exit__cCs|jd�dS)z�Returns underlying file descriptor (an int) if one exists.

        An OSError is raised if the IO object does not use a file descriptor.
        r&N)rP)r@r;r;r<r&�sz
IOBase.filenocCs|j�dS)z{Return a bool indicating whether this is an 'interactive' stream.

        Return False if it can't be determined.
        F)rV)r@r;r;r<r"�s
z
IOBase.isattyrcs�t�d�r'��fdd�}ndd�}�dkrHd
�nt�t�sftd��nt�}x[�dks�t|��kr��j|��}|s�Pn||7}|jd	�rrPqrqrWt|�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.
        �peekcsZ�jd�}|sdS|jd�dp5t|�}�dkrVt|��}n|S)Nrs
r)rd�findr�min)Z	readahead�n)r@�sizer;r<�
nreadahead�sz#IOBase.readline.<locals>.nreadaheadcSsdS)Nrr;r;r;r;r<ri�sNrzsize must be an integerrs
r)	�hasattrrrr�	bytearrayr�read�endswithr)r@rhri�resrr;)r@rhr<�readline�s 			!
zIOBase.readlinecCs|j�|S)N)rV)r@r;r;r<�__iter__�s
zIOBase.__iter__cCs|j�}|st�n|S)N)ro�
StopIteration)r@�liner;r;r<�__next__s	zIOBase.__next__cCsp|dks|dkr"t|�Sd}g}x;|D]3}|j|�|t|�7}||kr5Pq5q5W|S)z�Return 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)�list�appendr)r@Zhintrg�linesrrr;r;r<�	readliness


zIOBase.readlinescCs,|j�x|D]}|j|�qWdS)N)rV�write)r@rvrrr;r;r<�
writeliness

zIOBase.writelinesr)rDrErFr?rPrQrTrUrWrXr/rYrZr\r]r^r_r`�propertyrarVrbrcr&r"rorprsrwryr;r;r;r<rMs4
	
%rM�	metaclassc@sIeZdZdZddd�Zdd�Zdd�Zd	d
�ZdS)
�	RawIOBasezBase class for raw binary I/O.rcCss|dkrd}n|dkr+|j�St|j��}|j|�}|dkr\dS||d�=t|�S)z�Read 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.
        Nrrr)�readallrk�	__index__�readintor)r@rhrrgr;r;r<rl0s	

zRawIOBase.readcCsKt�}x'|jt�}|s%Pn||7}qW|rCt|�S|SdS)z+Read until EOF, using multiple read() call.N)rkrlr#r)r@rn�datar;r;r<r}As	
zRawIOBase.readallcCs|jd�dS)z�Read up to len(b) bytes into bytearray 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)rP)r@rr;r;r<rOszRawIOBase.readintocCs|jd�dS)z~Write the given buffer to the IO stream.

        Returns the number of bytes written, which may be less than len(b).
        rxN)rP)r@rr;r;r<rxWszRawIOBase.writeNr)rDrErFr?rlr}rrxr;r;r;r<r|"s
r|)r!c@sXeZdZdZddd�Zddd�Zdd�Zd	d
�Zdd�ZdS)
�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|jd�dS)a�Read 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.
        rlN)rP)r@rhr;r;r<rltszBufferedIOBase.readcCs|jd�dS)zaRead up to size bytes with at most one read() system call,
        where size is an int.
        �read1N)rP)r@rhr;r;r<r��szBufferedIOBase.read1cCs�|jt|��}t|�}y||d|�<Wnhtk
r�}zHddl}t||j�sq|�n|jd|�|d|�<WYdd}~XnX|S)a[Read up to len(b) bytes into bytearray 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.
        Nrr)rlrr�arrayr)r@rr�rg�errr�r;r;r<r�s	/zBufferedIOBase.readintocCs|jd�dS)aWrite the given bytes buffer to the IO stream.

        Return the number of bytes written, which is never less than
        len(b).

        Raises BlockingIOError if the buffer is full and the
        underlying raw stream cannot accept more data at the moment.
        rxN)rP)r@rr;r;r<rx�s	zBufferedIOBase.writecCs|jd�dS)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)rP)r@r;r;r<r��szBufferedIOBase.detach)	rDrErFr?rlr�rrxr�r;r;r;r<r�csr�c@seZdZdZdd�Zddd�Zdd�Zd	d
d�Zdd
�Zdd�Z	dd�Z
dd�Zdd�Zdd�Z
edd��Zedd��Zedd��Zedd��Zd d!�Zd"d#�Zd$d%�Zd&d'�Zd	S)(�_BufferedIOMixinz�A 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)r@r7r;r;r<�__init__�sz_BufferedIOMixin.__init__rcCs4|jj||�}|dkr0td��n|S)Nrz#seek() returned an invalid position)r7rQr()r@rRrSZnew_positionr;r;r<rQ�sz_BufferedIOMixin.seekcCs.|jj�}|dkr*td��n|S)Nrz#tell() returned an invalid position)r7rTr()r@rRr;r;r<rT�sz_BufferedIOMixin.tellNcCs5|j�|dkr%|j�}n|jj|�S)N)rWrTr7rU)r@rRr;r;r<rU�s
z_BufferedIOMixin.truncatecCs)|jrtd��n|jj�dS)Nzflush of closed file)rarr7rW)r@r;r;r<rW�s	z_BufferedIOMixin.flushc
Cs?|jdk	r;|jr;z|j�Wd|jj�XndS)N)r7rarWr/)r@r;r;r<r/�sz_BufferedIOMixin.closecCs>|jdkrtd��n|j�|j}d|_|S)Nzraw stream already detached)r7rrWr�)r@r7r;r;r<r��s
		z_BufferedIOMixin.detachcCs
|jj�S)N)r7rZ)r@r;r;r<rZ�sz_BufferedIOMixin.seekablecCs
|jj�S)N)r7r])r@r;r;r<r]�sz_BufferedIOMixin.readablecCs
|jj�S)N)r7r_)r@r;r;r<r_sz_BufferedIOMixin.writablecCs|jS)N)r�)r@r;r;r<r7sz_BufferedIOMixin.rawcCs
|jjS)N)r7ra)r@r;r;r<rasz_BufferedIOMixin.closedcCs
|jjS)N)r7rO)r@r;r;r<rOsz_BufferedIOMixin.namecCs
|jjS)N)r7r.)r@r;r;r<r.sz_BufferedIOMixin.modecCstdj|jj���dS)Nz can not serialize a '{0}' object)r�formatrNrD)r@r;r;r<�__getstate__s	z_BufferedIOMixin.__getstate__cCsO|jj}y
|j}Wntk
r:dj|�SYnXdj||�SdS)Nz<_pyio.{0}>z<_pyio.{0} name={1!r}>)rNrDrO�	Exceptionr�)r@ZclsnamerOr;r;r<�__repr__s

z_BufferedIOMixin.__repr__cCs
|jj�S)N)r7r&)r@r;r;r<r&#sz_BufferedIOMixin.filenocCs
|jj�S)N)r7r")r@r;r;r<r"&sz_BufferedIOMixin.isatty)rDrErFr?r�rQrTrUrWr/r�rZr]r_rzr7rarOr.r�r�r&r"r;r;r;r<r��s&
r�cs�eZdZdZddd�Zdd�Zdd�Zd	d
�Z�fdd�Zdd
d�Z	dd�Z
dd�Zddd�Zdd�Z
ddd�Zdd�Zdd�Zdd�Z�S) �BytesIOz<Buffered I/O implementation using an in-memory bytes buffer.NcCs8t�}|dk	r"||7}n||_d|_dS)Nr)rk�_buffer�_pos)r@Z
initial_bytes�bufr;r;r<r�.s
	
	zBytesIO.__init__cCs%|jrtd��n|jj�S)Nz__getstate__ on closed file)rar�__dict__�copy)r@r;r;r<r�5s	zBytesIO.__getstate__cCs%|jrtd��nt|j�S)z8Return the bytes value (contents) of the buffer
        zgetvalue on closed file)rarrr�)r@r;r;r<�getvalue:s	zBytesIO.getvaluecCs%|jrtd��nt|j�S)z;Return a readable and writable view of the buffer.
        zgetbuffer on closed file)rar�
memoryviewr�)r@r;r;r<�	getbufferAs	zBytesIO.getbuffercs|jj�t�j�dS)N)r��clear�superr/)r@)rNr;r<r/Hs
z
BytesIO.closecCs�|jrtd��n|dkr-d}n|dkrKt|j�}nt|j�|jkrgdStt|j�|j|�}|j|j|�}||_t|�S)Nzread from closed filerr�r)rarrr�r�rfr)r@rhZnewposrr;r;r<rlLs			zBytesIO.readcCs
|j|�S)z"This is the same as read.
        )rl)r@rhr;r;r<r�Zsz
BytesIO.read1cCs�|jrtd��nt|t�r6td��nt|�}|dkrRdS|j}|t|j�kr�d|t|j�}|j|7_n||j|||�<|j|7_|S)Nzwrite to closed filez can't write str to binary streamrs)rarrrrrr�r�)r@rrgrRZpaddingr;r;r<rx_s		z
BytesIO.writercCs�|jrtd��ny|jWn4tk
rY}ztd�|�WYdd}~XnX|dkr�|dkr�td|f��n||_nb|dkr�td|j|�|_n:|dkr�tdt|j�|�|_ntd��|jS)Nzseek on closed filezan integer is requiredrznegative seek position %rrrzunsupported whence value)	rarr~r)rr��maxrr�)r@rRrSr�r;r;r<rQqs 	""zBytesIO.seekcCs|jrtd��n|jS)Nztell on closed file)rarr�)r@r;r;r<rT�s	zBytesIO.tellcCs�|jrtd��n|dkr0|j}ndy|jWn4tk
rq}ztd�|�WYdd}~XnX|dkr�td|f��n|j|d�=|S)Nztruncate on closed filezan integer is requiredrznegative truncate position %r)rarr�r~r)rr�)r@rRr�r;r;r<rU�s	"zBytesIO.truncatecCs|jrtd��ndS)NzI/O operation on closed file.T)rar)r@r;r;r<r]�s	zBytesIO.readablecCs|jrtd��ndS)NzI/O operation on closed file.T)rar)r@r;r;r<r_�s	zBytesIO.writablecCs|jrtd��ndS)NzI/O operation on closed file.T)rar)r@r;r;r<rZ�s	zBytesIO.seekable)rDrErFr?r�r�r�r�r/rlr�rxrQrTrUr]r_rZr;r;)rNr<r�*sr�c@s�eZdZdZedd�Zdd�Zddd�Zdd	d
�Zddd
�Z	ddd�Z
dd�Zdd�Zddd�Z
dS)r,aBufferedReader(raw[, buffer_size])

    A buffer for a readable, sequential BaseRawIO object.

    The constructor creates a BufferedReader for the given readable raw
    stream and buffer_size. If buffer_size is omitted, DEFAULT_BUFFER_SIZE
    is used.
    cCsi|j�std��ntj||�|dkrFtd��n||_|j�t�|_dS)zMCreate a new buffered reader using the given readable raw IO object.
        z "raw" argument must be readable.rzinvalid buffer sizeN)	r]r(r�r�r�buffer_size�_reset_read_buf�Lock�
_read_lock)r@r7r�r;r;r<r��s	
zBufferedReader.__init__cCsd|_d|_dS)Nr�r)�	_read_buf�	_read_pos)r@r;r;r<r��s	zBufferedReader._reset_read_bufNc	CsH|dk	r'|dkr'td��n|j�|j|�SWdQXdS)z�Read size bytes.

        Returns exactly size bytes of data unless the underlying raw IO
        stream reaches EOF or if the call would block in non-blocking
        mode. If size is negative, read until EOF or until read() would
        block.
        Nrzinvalid number of bytes to readr)rr��_read_unlocked)r@rhr;r;r<rl�s
zBufferedReader.readcCsOd}d}|j}|j}|dks6|dkr'|j�t|jd�r�|jj�}|dkr�||d�p�dS||d�|Sn||d�g}d}xby|jj�}Wntk
r�w�YnX||kr�|}Pn|t|�7}|j	|�q�Wdj
|�p&|St|�|}	||	krd|j|7_||||�S||d�g}t|j|�}
xq|	|kr�y|jj|
�}Wntk
r�w�YnX||kr�|}Pn|	t|�7}	|j	|�q�Wt
||	�}dj
|�}||d�|_d|_|rK|d|�S|S)Nr�rr}r)r�Nr)r�r�r�rjr7r}rl�InterruptedErrorrru�joinr�r�rf)r@rgZ
nodata_valZempty_valuesr�rR�chunkZchunksZcurrent_sizeZavailZwanted�outr;r;r<r��sZ		


	zBufferedReader._read_unlockedrc	Cs!|j�|j|�SWdQXdS)z�Returns buffered bytes without advancing the position.

        The argument indicates a desired minimal number of bytes; we
        do at most one raw read to satisfy it.  We never return more
        than self.buffer_size.
        N)r��_peek_unlocked)r@rhr;r;r<rds
zBufferedReader.peekcCs�t||j�}t|j�|j}||ks@|dkr�|j|}x3y|jj|�}Wntk
r}wPYnXPqPW|r�|j|jd�||_d|_q�n|j|jd�S)Nr)rfr�rr�r�r7rlr�)r@rgZwantZhaveZto_readZcurrentr;r;r<r�s

zBufferedReader._peek_unlockedcCsr|dkrtd��n|dkr+dS|j�8|jd�|jt|t|j�|j��SWdQXdS)z<Reads up to size bytes, with at most one read() system call.rz(number of bytes to read must be positiver�rN)rr�r�r�rfrr�r�)r@rhr;r;r<r�%s

zBufferedReader.read1cCs!tj|�t|j�|jS)N)r�rTrr�r�)r@r;r;r<rT2szBufferedReader.tellcCs{|tkrtd��n|j�Q|dkrN|t|j�|j8}ntj|||�}|j�|SWdQXdS)Nzinvalid whence valuer)	�valid_seek_flagsrr�rr�r�r�rQr�)r@rRrSr;r;r<rQ5s

zBufferedReader.seek)rDrErFr?r#r�r�rlr�rdr�r�rTrQr;r;r;r<r,�s	

:

r,c@sseZdZdZedd�Zdd�Zddd�Zd	d
�Zdd�Z	d
d�Z
ddd�ZdS)r+z�A buffer for a writeable sequential RawIO object.

    The constructor creates a BufferedWriter for the given writeable raw
    stream. If the buffer_size is not given, it defaults to
    DEFAULT_BUFFER_SIZE.
    cCsk|j�std��ntj||�|dkrFtd��n||_t�|_t�|_	dS)Nz "raw" argument must be writable.rzinvalid buffer size)
r_r(r�r�rr�rk�
_write_bufr��_write_lock)r@r7r�r;r;r<r�Hs	zBufferedWriter.__init__cCsb|jrtd��nt|t�r6td��n|j�t|j�|jkre|j	�nt|j�}|jj
|�t|j�|}t|j�|jkrTy|j	�WqTtk
rP}zqt|j�|jkr>t|j�|j}||8}|jd|j�|_t|j|j
|��nWYdd}~XqTXn|SWdQXdS)Nzwrite to closed filez can't write str to binary stream)rarrrrr�rr�r��_flush_unlocked�extend�BlockingIOError�errno�strerror)r@rZbeforeZwritten�eZoverager;r;r<rxSs(	


1zBufferedWriter.writeNc	CsL|j�=|j�|dkr2|jj�}n|jj|�SWdQXdS)N)r�r�r7rTrU)r@rRr;r;r<rUos


zBufferedWriter.truncatecCs|j�|j�WdQXdS)N)r�r�)r@r;r;r<rWvs
zBufferedWriter.flushcCs�|jrtd��nx�|jr�y|jj|j�}Wn2tk
rTwYntk
rqtd��YnX|dkr�ttj	dd��n|t
|j�ks�|dkr�td��n|jd|�=qWdS)Nzflush of closed filezHself.raw should implement RawIOBase: it should not raise BlockingIOErrorz)write could not complete without blockingrz*write() returned incorrect number of bytes)rarr�r7rxr�r��RuntimeErrorr�ZEAGAINrr()r@rgr;r;r<r�zs 	

!zBufferedWriter._flush_unlockedcCstj|�t|j�S)N)r�rTrr�)r@r;r;r<rT�szBufferedWriter.tellrcCsL|tkrtd��n|j�"|j�tj|||�SWdQXdS)Nzinvalid whence value)r�rr�r�r�rQ)r@rRrSr;r;r<rQ�s


zBufferedWriter.seek)rDrErFr?r#r�rxrUrWr�rTrQr;r;r;r<r+?sr+c@s�eZdZdZedd�Zddd�Zdd�Zd	d
�Zddd
�Z	dd�Z
dd�Zdd�Zdd�Z
dd�Zdd�Zedd��ZdS)�BufferedRWPaira�A buffered reader and writer object together.

    A buffered reader object and buffered writer object put together to
    form a sequential IO object that can read and write. This is typically
    used with a socket or two-way pipe.

    reader and writer are RawIOBase objects that are readable and
    writeable respectively. If the buffer_size is omitted it defaults to
    DEFAULT_BUFFER_SIZE.
    cCs^|j�std��n|j�s6td��nt||�|_t||�|_dS)zEConstructor.

        The arguments are two RawIO instances.
        z#"reader" argument must be readable.z#"writer" argument must be writable.N)r]r(r_r,�readerr+�writer)r@r�r�r�r;r;r<r��szBufferedRWPair.__init__NcCs%|dkrd}n|jj|�S)Nrr)r�rl)r@rhr;r;r<rl�s	zBufferedRWPair.readcCs|jj|�S)N)r�r)r@rr;r;r<r�szBufferedRWPair.readintocCs|jj|�S)N)r�rx)r@rr;r;r<rx�szBufferedRWPair.writercCs|jj|�S)N)r�rd)r@rhr;r;r<rd�szBufferedRWPair.peekcCs|jj|�S)N)r�r�)r@rhr;r;r<r��szBufferedRWPair.read1cCs
|jj�S)N)r�r])r@r;r;r<r]�szBufferedRWPair.readablecCs
|jj�S)N)r�r_)r@r;r;r<r_�szBufferedRWPair.writablecCs
|jj�S)N)r�rW)r@r;r;r<rW�szBufferedRWPair.flushc
Cs&z|jj�Wd|jj�XdS)N)r�r/r�)r@r;r;r<r/�szBufferedRWPair.closecCs|jj�p|jj�S)N)r�r"r�)r@r;r;r<r"�szBufferedRWPair.isattycCs
|jjS)N)r�ra)r@r;r;r<ra�szBufferedRWPair.closed)rDrErFr?r#r�rlrrxrdr�r]r_rWr/r"rzrar;r;r;r<r��sr�c@s�eZdZdZedd�Zddd�Zdd�Zd	d
d�Zd	dd
�Z	dd�Z
ddd�Zdd�Zdd�Z
d	S)r*z�A buffered interface to random access streams.

    The constructor creates a reader and writer for a seekable stream,
    raw, given in the first argument. If the buffer_size is omitted it
    defaults to DEFAULT_BUFFER_SIZE.
    cCs4|j�tj|||�tj|||�dS)N)r\r,r�r+)r@r7r�r;r;r<r��s
zBufferedRandom.__init__rcCs�|tkrtd��n|j�|jrd|j�(|jj|jt|j�d�WdQXn|jj||�}|j�|j	�WdQX|dkr�t
d��n|S)Nzinvalid whence valuerrz seek() returned invalid position)r�rrWr�r�r7rQr�rr�r()r@rRrSr;r;r<rQ�s
	
,
zBufferedRandom.seekcCs'|jrtj|�Stj|�SdS)N)r�r+rTr,)r@r;r;r<rT�s	
zBufferedRandom.tellNcCs+|dkr|j�}ntj||�S)N)rTr+rU)r@rRr;r;r<rUszBufferedRandom.truncatecCs/|dkrd}n|j�tj||�S)Nrr)rWr,rl)r@rhr;r;r<rl	s	
zBufferedRandom.readcCs|j�tj||�S)N)rWr,r)r@rr;r;r<rs
zBufferedRandom.readintocCs|j�tj||�S)N)rWr,rd)r@rhr;r;r<rds
zBufferedRandom.peekcCs|j�tj||�S)N)rWr,r�)r@rhr;r;r<r�s
zBufferedRandom.read1cCsY|jrI|j�2|jj|jt|j�d�|j�WdQXntj||�S)Nr)	r�r�r7rQr�rr�r+rx)r@rr;r;r<rxs
	
#zBufferedRandom.write)rDrErFr?r#r�rQrTrUrlrrdr�rxr;r;r;r<r*�sr*c@s�eZdZdZddd�Zdd�Zddd	�Zd
d�Zdd
�Ze	dd��Z
e	dd��Ze	dd��ZdS)�
TextIOBasez�Base 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.
    rcCs|jd�dS)z�Read 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.
        rlN)rP)r@rhr;r;r<rl-szTextIOBase.readcCs|jd�dS)z.Write string s to stream and returning an int.rxN)rP)r@�sr;r;r<rx7szTextIOBase.writeNcCs|jd�dS)z*Truncate size to pos, where pos is an int.rUN)rP)r@rRr;r;r<rU;szTextIOBase.truncatecCs|jd�dS)z_Read until newline or EOF.

        Returns an empty string if EOF is hit immediately.
        roN)rP)r@r;r;r<ro?szTextIOBase.readlinecCs|jd�dS)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.
        r�N)rP)r@r;r;r<r�FszTextIOBase.detachcCsdS)zSubclasses should override.Nr;)r@r;r;r<r2OszTextIOBase.encodingcCsdS)z�Line endings translated so far.

        Only line endings translated during reading are considered.

        Subclasses should override.
        Nr;)r@r;r;r<�newlinesTszTextIOBase.newlinescCsdS)zMError setting of the decoder or encoder.

        Subclasses should override.Nr;)r@r;r;r<r3^szTextIOBase.errorsr)
rDrErFr?rlrxrUror�rzr2r�r3r;r;r;r<r�$s
	
r�c@s|eZdZdZddd�Zddd�Zdd	�Zd
d�Zdd
�ZdZ	dZ
dZedd��Z
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)Nr3rF)�codecs�IncrementalDecoderr��	translate�decoder�seennl�	pendingcr)r@r�r�r3r;r;r<r�os
			z"IncrementalNewlineDecoder.__init__FcCs:|jdkr|}n|jj|d|�}|jr[|sE|r[d|}d|_n|jd�r�|r�|dd�}d|_n|jd�}|jd�|}|jd�|}|j|o�|j|o�|jB|o�|jBO_|j	r6|r|j
dd�}n|r6|j
dd�}q6n|S)	N�final�
FrTz
�
r)r��decoder�rm�countr��_LF�_CR�_CRLFr��replace)r@�inputr��outputZcrlfZcrZlfr;r;r<r�vs(	
+	z IncrementalNewlineDecoder.decodecCs]|jdkrd}d}n|jj�\}}|dK}|jrS|dO}n||fS)Nr�rr)r��getstater�)r@r��flagr;r;r<r��s	
	
z"IncrementalNewlineDecoder.getstatecCsO|\}}t|d@�|_|jdk	rK|jj||d?f�ndS)Nr)�boolr�r��setstate)r@�stater�r�r;r;r<r��sz"IncrementalNewlineDecoder.setstatecCs5d|_d|_|jdk	r1|jj�ndS)NrF)r�r�r��reset)r@r;r;r<r��s		zIncrementalNewlineDecoder.resetrr�c
Csd|jS)	Nr�r��
�r�r��r�r��r�r��r�r�r�)Nr�r�r�r�r�r�r�)r�)r@r;r;r<r��sz"IncrementalNewlineDecoder.newlinesN)rDrErFr?r�r�r�r�r�r�r�r�rzr�r;r;r;r<r�hsr�c@s�eZdZdZdZddddddd�Zdd�Zed	d
��Zedd��Z	ed
d��Z
edd��Zdd�Zdd�Z
dd�Zdd�Zdd�Zedd��Zedd��Zdd �Zd!d"�Zd#d$�Zd%d&�Zd'd(�Zd)d*�Zdd+d,�Zd-d.�Zd/d0�Zd1d1d1d1d2d3�Zd4d5�Zd6d7�Zdd8d9�Zd:d;�Z d1d<d=�Z!dd>d?�Z"d@dA�Z#ddBdC�Z$edDdE��Z%dS)Fr-aCharacter 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	r8t|t�r8tdt|�f��n|dkrZtd|f��n|dkr�ytj|j��}Wntt	fk
r�YnX|dkr�yddl
}Wntk
r�d}Yq�X|jd	�}q�nt|t�std
|��nt
j|�js3d}t||��n|dkrHd}n"t|t�sjtd
|��n||_||_||_||_||_|dk|_||_|dk|_|p�tj|_d|_d|_d|_d|_d|_|j j!�|_"|_#t$|j d�|_%d|_&|j"r�|j'�r�|j j(�}	|	dkr�y|j)�j*d�Wq�tk
r�Yq�Xq�ndS)Nzillegal newline type: %rrr�r��
zillegal newline value: %rr�asciiFzinvalid encoding: %rzG%r is not a text encoding; use codecs.open() to handle arbitrary codecsr�zinvalid errors: %rr�g)Nrr�r�r�)+rrr�typerr$�device_encodingr&r)rL�locale�ImportError�getpreferredencodingr��lookup�_is_text_encoding�LookupErrorr��_line_buffering�	_encoding�_errors�_readuniversal�_readtranslate�_readnl�_writetranslate�linesep�_writenl�_encoder�_decoder�_decoded_chars�_decoded_chars_used�	_snapshotr:rZ�	_seekable�_tellingrj�
_has_read1�	_b2cratior_rT�_get_encoderr�)
r@r:r2r3r4r9Z
write_throughr�r[�positionr;r;r<r��s`
					
							
zTextIOWrapper.__init__cCs�d}y
|j}Wntk
r'YnX|dj|�7}y
|j}Wntk
r\YnX|dj|�7}|dj|j�S)Nz<_pyio.TextIOWrapperz name={0!r}z mode={0!r}z encoding={0!r}>)rOr�r�r.r2)r@r8rOr.r;r;r<r� s



zTextIOWrapper.__repr__cCs|jS)N)r�)r@r;r;r<r20szTextIOWrapper.encodingcCs|jS)N)r�)r@r;r;r<r34szTextIOWrapper.errorscCs|jS)N)r�)r@r;r;r<r98szTextIOWrapper.line_bufferingcCs|jS)N)r�)r@r;r;r<r:<szTextIOWrapper.buffercCs|jrtd��n|jS)NzI/O operation on closed file.)rarr�)r@r;r;r<rZ@s	zTextIOWrapper.seekablecCs
|jj�S)N)r:r])r@r;r;r<r]EszTextIOWrapper.readablecCs
|jj�S)N)r:r_)r@r;r;r<r_HszTextIOWrapper.writablecCs|jj�|j|_dS)N)r:rWr�r�)r@r;r;r<rWKs
zTextIOWrapper.flushc
Cs?|jdk	r;|jr;z|j�Wd|jj�XndS)N)r:rarWr/)r@r;r;r<r/OszTextIOWrapper.closecCs
|jjS)N)r:ra)r@r;r;r<raVszTextIOWrapper.closedcCs
|jjS)N)r:rO)r@r;r;r<rOZszTextIOWrapper.namecCs
|jj�S)N)r:r&)r@r;r;r<r&^szTextIOWrapper.filenocCs
|jj�S)N)r:r")r@r;r;r<r"aszTextIOWrapper.isattycCs"|jrtd��nt|t�s@td|jj��nt|�}|js^|j	ogd|k}|r�|jr�|j
dkr�|jd|j
�}n|jp�|j
�}|j|�}|jj|�|j	r�|s�d|kr�|j�nd|_|jr|jj�n|S)zWrite data, where s is a strzwrite to closed filezcan't write %s to text streamr�r�N)rarrrrrNrDrr�r�r�r�r�r��encoder:rxrWr�r�r�)r@r�ZlengthZhaslf�encoderrr;r;r<rxds$	
		zTextIOWrapper.writecCs+tj|j�}||j�|_|jS)N)r��getincrementalencoderr�r�r�)r@Zmake_encoderr;r;r<r�zszTextIOWrapper._get_encodercCsLtj|j�}||j�}|jr?t||j�}n||_|S)N)r��getincrementaldecoderr�r�r�r�r�r�)r@Zmake_decoderr�r;r;r<�_get_decoders		zTextIOWrapper._get_decodercCs||_d|_dS)zSet the _decoded_chars buffer.rN)r�r�)r@�charsr;r;r<�_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)r@rg�offsetr�r;r;r<�_get_decoded_chars�s	z TextIOWrapper._get_decoded_charscCs1|j|krtd��n|j|8_dS)z!Rewind the _decoded_chars buffer.z"rewind decoded_chars out of boundsN)r��AssertionError)r@rgr;r;r<�_rewind_decoded_chars�sz#TextIOWrapper._rewind_decoded_charscCs�|jdkrtd��n|jr?|jj�\}}n|jr`|jj|j�}n|jj|j�}|}|jj	||�}|j
|�|r�t|�t|j�|_
n	d|_
|jr�|||f|_n|S)zQ
        Read and decode the next chunk of data from the BufferedReader.
        Nz
no decoderg)r�rr�r�r�r:r��_CHUNK_SIZErlr�r�rr�r�r�)r@�
dec_buffer�	dec_flags�input_chunk�eofZ
decoded_charsr;r;r<�_read_chunk�s 		
		zTextIOWrapper._read_chunkrcCs*||d>B|d>B|d>Bt|�d>BS)N�@���)r�)r@r�r�
bytes_to_feed�need_eof�
chars_to_skipr;r;r<�_pack_cookie�szTextIOWrapper._pack_cookiecCsgt|d�\}}t|d�\}}t|d�\}}t|d�\}}|||||fS)Nrrllll)�divmod)r@Zbigint�restr�rrr	r
r;r;r<�_unpack_cookie�s
zTextIOWrapper._unpack_cookiecCs|jstd��n|js0td��n|j�|jj�}|j}|dksm|jdkr�|j	r�t
d��n|S|j\}}|t|�8}|j}|dkr�|j
||�S|j�}z(t|j|�}d}x�|dkr�|jd|f�t|j|d|���}	|	|kr�|j�\}
}|
sn|}||	8}Pn|t|
�8}d}q�||8}|d}q�Wd}|jd|f�||}|}
|dkr�|j
||
�Sd}d}d}x�t|t|��D]�}|d7}|t|j|||d���7}|j�\}}|r�||kr�||7}||8}|dd}
}}n||krPqqW|t|jddd	��7}d}||kr�td
��n|j
||
|||�SWd|j|�XdS)Nz!underlying stream is not seekablez(telling position disabled by next() callzpending decoded textrrr�rr�Tz'can't reconstruct logical file position)r�rLr�r(rWr:rTr�r�r�r�rr�rr�rr�r�r��range)r@r�r�rZ
next_inputr
Zsaved_stateZ
skip_bytesZ	skip_backrgr�d�	start_posZstart_flagsZ	bytes_fedr	Z
chars_decoded�ir�r;r;r<rT�sv		
			
	


'

zTextIOWrapper.tellcCs5|j�|dkr%|j�}n|jj|�S)N)rWrTr:rU)r@rRr;r;r<rU=s
zTextIOWrapper.truncatecCs>|jdkrtd��n|j�|j}d|_|S)Nzbuffer is already detached)r:rrWr�)r@r:r;r;r<r�Cs
		zTextIOWrapper.detachcs��fdd�}�jr*td��n�jsBtd��n|dkr~|dkritd��nd}�j�}n|dkr|dkr�td	��n�j��jjdd�}�jd
�d�_	�j
r��j
j�n||�|S|dkr#td|f��n|dkrEtd|f��n�j��j|�\}}}}}	�jj|��jd
�d�_	|dkr��j
r��j
j�nU�j
s�|s�|	r
�j
p��j
��_
�j
jd
|f�|d
f�_	n|	r��jj|�}
�j�j
j|
|��||
f�_	t�j�|	krttd��n|	�_n||�|S)NcsXy�jp�j�}Wntk
r-Yn'X|dkrJ|jd�n
|j�dS)z9Reset the encoder (merely useful for proper BOM handling)rN)r�r�r�r�r�)r�r�)r@r;r<�_reset_encoderLs
z*TextIOWrapper.seek.<locals>._reset_encoderztell on closed filez!underlying stream is not seekablerrz#can't do nonzero cur-relative seeksrz#can't do nonzero end-relative seeksrzunsupported whence (%r)znegative seek position %rr�z#can't restore logical file position)rarr�rLrTrWr:rQr�r�r�r�rr�r�rlr�rr�r(r�)r@ZcookierSrr�rrrr	r
rr;)r@r<rQKs\
		

		


	
zTextIOWrapper.seekcCs+|j�|dkrd}n|jp1|j�}y|jWn4tk
ru}ztd�|�WYdd}~XnX|dkr�|j�|j|jj	�dd�}|j
d�d|_|Sd}|j|�}xGt|�|kr"|r"|j
�}||j|t|��7}q�W|SdS)	Nrzan integer is requiredrr�TrFr)r^r�r�r~r)rr�r�r:rlr�r�rr)r@rhr�r�r8rr;r;r<rl�s(
	"	
	
!zTextIOWrapper.readcCs=d|_|j�}|s9d|_|j|_t�n|S)NF)r�ror�r�rq)r@rrr;r;r<rs�s			zTextIOWrapper.__next__cCs�|jrtd��n|dkr-d	}nt|t�sKtd��n|j�}d}|jss|j�nd}}x�|jr�|j	d|�}|dkr�|d}Pq�t
|�}n�|jr�|j	d|�}|j	d|�}|d
kr&|dkrt
|�}q�|d}Pq�|dkr@|d}Pq�||krZ|d}Pq�||dkrx|d}Pq�|d}Pn5|j	|j�}|dkr�|t
|j�}Pn|dkr�t
|�|kr�|}Pnx|j
�r|jr�Pq�q�W|jr||j�7}q�|jd�d|_|Sq�W|dkr^||kr^|}n|jt
|�|�|d|�S)
Nzread from closed filerzsize must be an integerrr�r�rrrrrr)rarrrrr�r�r�r�rerr�r�rr�r�r�r�)r@rhrr�startrR�endposZnlposZcrposr;r;r<ro�sp			

	
	




		
		zTextIOWrapper.readlinecCs|jr|jjSdS)N)r�r�)r@r;r;r<r�szTextIOWrapper.newlines)&rDrErFr?r�r�r�rzr2r3r9r:rZr]r_rWr/rarOr&r"rxr�r�r�r�r�rrrrTrUr�rQrlrsror�r;r;r;r<r-�sH	E
*	cK	Xr-csveZdZdZdd�fdd�Zdd�Zdd	�Zed
d��Zedd
��Z	dd�Z
�S)�StringIOz�Text 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.
    rr�cs�tt|�jt�ddddd|�|dkrCd|_n|dk	r�t|t�stdjt	|�j
���n|j|�|jd�ndS)	Nr2zutf-8r3�
surrogatepassr4Fz*initial_value must be str or None, not {0}r)
r�rr�r�r�rrrr�r�rDrxrQ)r@Z
initial_valuer4)rNr;r<r�s	
zStringIO.__init__cCsj|j�|jp|j�}|j�}|j�z |j|jj�dd�SWd|j|�XdS)Nr�T)	rWr�r�r�r�r�r:r�r�)r@r�Z	old_stater;r;r<r�,s

 zStringIO.getvaluecCs
tj|�S)N)�objectr�)r@r;r;r<r�6szStringIO.__repr__cCsdS)Nr;)r@r;r;r<r3;szStringIO.errorscCsdS)Nr;)r@r;r;r<r2?szStringIO.encodingcCs|jd�dS)Nr�)rP)r@r;r;r<r�CszStringIO.detach)rDrErFr?r�r�r�rzr3r2r�r;r;)rNr<rs
r)/r?r$�abcr�r��_threadrr�r�Z
_dummy_thread�iorrrrr�rj�addr	�	SEEK_DATAr#r�r=r>rGrLr)rr(�ABCMetarM�registerr|�_ior!r�r�r�r,r+r�r*r�r�r�r-rr;r;r;r<�<module>s\
"

�	

�<
Vn~�YFFAU��Z

Filemanager

Name Type Size Permission Actions
__future__.cpython-34.pyc File 4.07 KB 0644
__future__.cpython-34.pyo File 4.07 KB 0644
__phello__.foo.cpython-34.pyc File 134 B 0644
__phello__.foo.cpython-34.pyo File 134 B 0644
_bootlocale.cpython-34.pyc File 1.02 KB 0644
_bootlocale.cpython-34.pyo File 1016 B 0644
_collections_abc.cpython-34.pyc File 23.39 KB 0644
_collections_abc.cpython-34.pyo File 23.39 KB 0644
_compat_pickle.cpython-34.pyc File 7.33 KB 0644
_compat_pickle.cpython-34.pyo File 7.25 KB 0644
_dummy_thread.cpython-34.pyc File 4.71 KB 0644
_dummy_thread.cpython-34.pyo File 4.71 KB 0644
_markupbase.cpython-34.pyc File 8.72 KB 0644
_markupbase.cpython-34.pyo File 8.54 KB 0644
_osx_support.cpython-34.pyc File 10.38 KB 0644
_osx_support.cpython-34.pyo File 10.38 KB 0644
_pyio.cpython-34.pyc File 63.41 KB 0644
_pyio.cpython-34.pyo File 63.39 KB 0644
_sitebuiltins.cpython-34.pyc File 3.59 KB 0644
_sitebuiltins.cpython-34.pyo File 3.59 KB 0644
_strptime.cpython-34.pyc File 15.41 KB 0644
_strptime.cpython-34.pyo File 15.41 KB 0644
_sysconfigdata.cpython-34.pyc File 24.49 KB 0644
_sysconfigdata.cpython-34.pyo File 24.49 KB 0644
_threading_local.cpython-34.pyc File 6.78 KB 0644
_threading_local.cpython-34.pyo File 6.78 KB 0644
_weakrefset.cpython-34.pyc File 8.27 KB 0644
_weakrefset.cpython-34.pyo File 8.27 KB 0644
abc.cpython-34.pyc File 7.69 KB 0644
abc.cpython-34.pyo File 7.64 KB 0644
aifc.cpython-34.pyc File 27.26 KB 0644
aifc.cpython-34.pyo File 27.26 KB 0644
antigravity.cpython-34.pyc File 847 B 0644
antigravity.cpython-34.pyo File 847 B 0644
argparse.cpython-34.pyc File 64.33 KB 0644
argparse.cpython-34.pyo File 64.17 KB 0644
ast.cpython-34.pyc File 12.07 KB 0644
ast.cpython-34.pyo File 12.07 KB 0644
asynchat.cpython-34.pyc File 8.16 KB 0644
asynchat.cpython-34.pyo File 8.16 KB 0644
asyncore.cpython-34.pyc File 17.54 KB 0644
asyncore.cpython-34.pyo File 17.54 KB 0644
base64.cpython-34.pyc File 17.87 KB 0644
base64.cpython-34.pyo File 17.67 KB 0644
bdb.cpython-34.pyc File 18.26 KB 0644
bdb.cpython-34.pyo File 18.26 KB 0644
binhex.cpython-34.pyc File 13.22 KB 0644
binhex.cpython-34.pyo File 13.22 KB 0644
bisect.cpython-34.pyc File 2.79 KB 0644
bisect.cpython-34.pyo File 2.79 KB 0644
bz2.cpython-34.pyc File 14.8 KB 0644
bz2.cpython-34.pyo File 14.8 KB 0644
cProfile.cpython-34.pyc File 4.51 KB 0644
cProfile.cpython-34.pyo File 4.51 KB 0644
calendar.cpython-34.pyc File 26.92 KB 0644
calendar.cpython-34.pyo File 26.92 KB 0644
cgi.cpython-34.pyc File 29.13 KB 0644
cgi.cpython-34.pyo File 29.13 KB 0644
cgitb.cpython-34.pyc File 10.8 KB 0644
cgitb.cpython-34.pyo File 10.8 KB 0644
chunk.cpython-34.pyc File 5.15 KB 0644
chunk.cpython-34.pyo File 5.15 KB 0644
cmd.cpython-34.pyc File 13.14 KB 0644
cmd.cpython-34.pyo File 13.14 KB 0644
code.cpython-34.pyc File 9.47 KB 0644
code.cpython-34.pyo File 9.47 KB 0644
codecs.cpython-34.pyc File 34.31 KB 0644
codecs.cpython-34.pyo File 34.31 KB 0644
codeop.cpython-34.pyc File 6.31 KB 0644
codeop.cpython-34.pyo File 6.31 KB 0644
colorsys.cpython-34.pyc File 3.57 KB 0644
colorsys.cpython-34.pyo File 3.57 KB 0644
compileall.cpython-34.pyc File 7.21 KB 0644
compileall.cpython-34.pyo File 7.21 KB 0644
configparser.cpython-34.pyc File 43.83 KB 0644
configparser.cpython-34.pyo File 43.83 KB 0644
contextlib.cpython-34.pyc File 10.13 KB 0644
contextlib.cpython-34.pyo File 10.13 KB 0644
copy.cpython-34.pyc File 7.87 KB 0644
copy.cpython-34.pyo File 7.79 KB 0644
copyreg.cpython-34.pyc File 4.5 KB 0644
copyreg.cpython-34.pyo File 4.46 KB 0644
crypt.cpython-34.pyc File 2.38 KB 0644
crypt.cpython-34.pyo File 2.38 KB 0644
csv.cpython-34.pyc File 12.69 KB 0644
csv.cpython-34.pyo File 12.69 KB 0644
datetime.cpython-34.pyc File 54.95 KB 0644
datetime.cpython-34.pyo File 53.02 KB 0644
decimal.cpython-34.pyc File 168.48 KB 0644
decimal.cpython-34.pyo File 168.48 KB 0644
difflib.cpython-34.pyc File 59.1 KB 0644
difflib.cpython-34.pyo File 59.05 KB 0644
dis.cpython-34.pyc File 14.25 KB 0644
dis.cpython-34.pyo File 14.25 KB 0644
doctest.cpython-34.pyc File 78.23 KB 0644
doctest.cpython-34.pyo File 77.97 KB 0644
dummy_threading.cpython-34.pyc File 1.19 KB 0644
dummy_threading.cpython-34.pyo File 1.19 KB 0644
enum.cpython-34.pyc File 15.96 KB 0644
enum.cpython-34.pyo File 15.96 KB 0644
filecmp.cpython-34.pyc File 8.91 KB 0644
filecmp.cpython-34.pyo File 8.91 KB 0644
fileinput.cpython-34.pyc File 13.96 KB 0644
fileinput.cpython-34.pyo File 13.96 KB 0644
fnmatch.cpython-34.pyc File 3.07 KB 0644
fnmatch.cpython-34.pyo File 3.07 KB 0644
formatter.cpython-34.pyc File 18.47 KB 0644
formatter.cpython-34.pyo File 18.47 KB 0644
fractions.cpython-34.pyc File 18.82 KB 0644
fractions.cpython-34.pyo File 18.82 KB 0644
ftplib.cpython-34.pyc File 32.54 KB 0644
ftplib.cpython-34.pyo File 32.54 KB 0644
functools.cpython-34.pyc File 23.06 KB 0644
functools.cpython-34.pyo File 23.06 KB 0644
genericpath.cpython-34.pyc File 3.41 KB 0644
genericpath.cpython-34.pyo File 3.41 KB 0644
getopt.cpython-34.pyc File 6.58 KB 0644
getopt.cpython-34.pyo File 6.53 KB 0644
getpass.cpython-34.pyc File 4.52 KB 0644
getpass.cpython-34.pyo File 4.52 KB 0644
gettext.cpython-34.pyc File 14.82 KB 0644
gettext.cpython-34.pyo File 14.82 KB 0644
glob.cpython-34.pyc File 2.81 KB 0644
glob.cpython-34.pyo File 2.81 KB 0644
gzip.cpython-34.pyc File 18.99 KB 0644
gzip.cpython-34.pyo File 18.94 KB 0644
hashlib.cpython-34.pyc File 7.76 KB 0644
hashlib.cpython-34.pyo File 7.76 KB 0644
heapq.cpython-34.pyc File 13.58 KB 0644
heapq.cpython-34.pyo File 13.58 KB 0644
hmac.cpython-34.pyc File 5.03 KB 0644
hmac.cpython-34.pyo File 5.03 KB 0644
imaplib.cpython-34.pyc File 42.46 KB 0644
imaplib.cpython-34.pyo File 40 KB 0644
imghdr.cpython-34.pyc File 4.05 KB 0644
imghdr.cpython-34.pyo File 4.05 KB 0644
imp.cpython-34.pyc File 9.64 KB 0644
imp.cpython-34.pyo File 9.64 KB 0644
inspect.cpython-34.pyc File 74.54 KB 0644
inspect.cpython-34.pyo File 74.22 KB 0644
io.cpython-34.pyc File 3.38 KB 0644
io.cpython-34.pyo File 3.38 KB 0644
ipaddress.cpython-34.pyc File 61.51 KB 0644
ipaddress.cpython-34.pyo File 61.51 KB 0644
keyword.cpython-34.pyc File 1.9 KB 0644
keyword.cpython-34.pyo File 1.9 KB 0644
linecache.cpython-34.pyc File 3.04 KB 0644
linecache.cpython-34.pyo File 3.04 KB 0644
locale.cpython-34.pyc File 36.4 KB 0644
locale.cpython-34.pyo File 36.4 KB 0644
lzma.cpython-34.pyc File 15.54 KB 0644
lzma.cpython-34.pyo File 15.54 KB 0644
macpath.cpython-34.pyc File 5.87 KB 0644
macpath.cpython-34.pyo File 5.87 KB 0644
macurl2path.cpython-34.pyc File 2.05 KB 0644
macurl2path.cpython-34.pyo File 2.05 KB 0644
mailbox.cpython-34.pyc File 68.64 KB 0644
mailbox.cpython-34.pyo File 68.54 KB 0644
mailcap.cpython-34.pyc File 6.39 KB 0644
mailcap.cpython-34.pyo File 6.39 KB 0644
mimetypes.cpython-34.pyc File 16.41 KB 0644
mimetypes.cpython-34.pyo File 16.41 KB 0644
modulefinder.cpython-34.pyc File 16.97 KB 0644
modulefinder.cpython-34.pyo File 16.89 KB 0644
netrc.cpython-34.pyc File 4.18 KB 0644
netrc.cpython-34.pyo File 4.18 KB 0644
nntplib.cpython-34.pyc File 35.46 KB 0644
nntplib.cpython-34.pyo File 35.46 KB 0644
ntpath.cpython-34.pyc File 12.99 KB 0644
ntpath.cpython-34.pyo File 12.99 KB 0644
nturl2path.cpython-34.pyc File 1.68 KB 0644
nturl2path.cpython-34.pyo File 1.68 KB 0644
numbers.cpython-34.pyc File 12.37 KB 0644
numbers.cpython-34.pyo File 12.37 KB 0644
opcode.cpython-34.pyc File 5.05 KB 0644
opcode.cpython-34.pyo File 5.05 KB 0644
operator.cpython-34.pyc File 12.48 KB 0644
operator.cpython-34.pyo File 12.48 KB 0644
optparse.cpython-34.pyc File 50.33 KB 0644
optparse.cpython-34.pyo File 50.25 KB 0644
os.cpython-34.pyc File 28.91 KB 0644
os.cpython-34.pyo File 28.91 KB 0644
pathlib.cpython-34.pyc File 39.53 KB 0644
pathlib.cpython-34.pyo File 39.53 KB 0644
pdb.cpython-34.pyc File 48.31 KB 0644
pdb.cpython-34.pyo File 48.25 KB 0644
pickle.cpython-34.pyc File 45.88 KB 0644
pickle.cpython-34.pyo File 45.74 KB 0644
pickletools.cpython-34.pyc File 68.61 KB 0644
pickletools.cpython-34.pyo File 67.55 KB 0644
pipes.cpython-34.pyc File 8.23 KB 0644
pipes.cpython-34.pyo File 8.23 KB 0644
pkgutil.cpython-34.pyc File 17.19 KB 0644
pkgutil.cpython-34.pyo File 17.19 KB 0644
platform.cpython-34.pyc File 30.44 KB 0644
platform.cpython-34.pyo File 30.44 KB 0644
plistlib.cpython-34.pyc File 29.44 KB 0644
plistlib.cpython-34.pyo File 29.36 KB 0644
poplib.cpython-34.pyc File 13.43 KB 0644
poplib.cpython-34.pyo File 13.43 KB 0644
posixpath.cpython-34.pyc File 9.58 KB 0644
posixpath.cpython-34.pyo File 9.58 KB 0644
pprint.cpython-34.pyc File 11.19 KB 0644
pprint.cpython-34.pyo File 11.03 KB 0644
profile.cpython-34.pyc File 14.8 KB 0644
profile.cpython-34.pyo File 14.55 KB 0644
pstats.cpython-34.pyc File 23.12 KB 0644
pstats.cpython-34.pyo File 23.12 KB 0644
pty.cpython-34.pyc File 4.13 KB 0644
pty.cpython-34.pyo File 4.13 KB 0644
py_compile.cpython-34.pyc File 6.7 KB 0644
py_compile.cpython-34.pyo File 6.7 KB 0644
pyclbr.cpython-34.pyc File 8.98 KB 0644
pyclbr.cpython-34.pyo File 8.98 KB 0644
pydoc.cpython-34.pyc File 88.78 KB 0644
pydoc.cpython-34.pyo File 88.72 KB 0644
queue.cpython-34.pyc File 9.04 KB 0644
queue.cpython-34.pyo File 9.04 KB 0644
quopri.cpython-34.pyc File 6.29 KB 0644
quopri.cpython-34.pyo File 6.09 KB 0644
random.cpython-34.pyc File 18.61 KB 0644
random.cpython-34.pyo File 18.61 KB 0644
re.cpython-34.pyc File 14.21 KB 0644
re.cpython-34.pyo File 14.21 KB 0644
reprlib.cpython-34.pyc File 5.73 KB 0644
reprlib.cpython-34.pyo File 5.73 KB 0644
rlcompleter.cpython-34.pyc File 5.56 KB 0644
rlcompleter.cpython-34.pyo File 5.56 KB 0644
runpy.cpython-34.pyc File 7.57 KB 0644
runpy.cpython-34.pyo File 7.57 KB 0644
sched.cpython-34.pyc File 6.42 KB 0644
sched.cpython-34.pyo File 6.42 KB 0644
selectors.cpython-34.pyc File 16.35 KB 0644
selectors.cpython-34.pyo File 16.35 KB 0644
shelve.cpython-34.pyc File 9.72 KB 0644
shelve.cpython-34.pyo File 9.72 KB 0644
shlex.cpython-34.pyc File 7.34 KB 0644
shlex.cpython-34.pyo File 7.34 KB 0644
shutil.cpython-34.pyc File 32.24 KB 0644
shutil.cpython-34.pyo File 32.24 KB 0644
site.cpython-34.pyc File 17.55 KB 0644
site.cpython-34.pyo File 17.55 KB 0644
smtpd.cpython-34.pyc File 25.07 KB 0644
smtpd.cpython-34.pyo File 25.07 KB 0644
smtplib.cpython-34.pyc File 32.35 KB 0644
smtplib.cpython-34.pyo File 32.28 KB 0644
sndhdr.cpython-34.pyc File 6.61 KB 0644
sndhdr.cpython-34.pyo File 6.61 KB 0644
socket.cpython-34.pyc File 17.69 KB 0644
socket.cpython-34.pyo File 17.64 KB 0644
socketserver.cpython-34.pyc File 22.71 KB 0644
socketserver.cpython-34.pyo File 22.71 KB 0644
sre_compile.cpython-34.pyc File 11.66 KB 0644
sre_compile.cpython-34.pyo File 11.5 KB 0644
sre_constants.cpython-34.pyc File 5.45 KB 0644
sre_constants.cpython-34.pyo File 5.45 KB 0644
sre_parse.cpython-34.pyc File 19.76 KB 0644
sre_parse.cpython-34.pyo File 19.76 KB 0644
ssl.cpython-34.pyc File 26.96 KB 0644
ssl.cpython-34.pyo File 26.96 KB 0644
stat.cpython-34.pyc File 3.49 KB 0644
stat.cpython-34.pyo File 3.49 KB 0644
statistics.cpython-34.pyc File 16.76 KB 0644
statistics.cpython-34.pyo File 16.46 KB 0644
string.cpython-34.pyc File 8.18 KB 0644
string.cpython-34.pyo File 8.18 KB 0644
stringprep.cpython-34.pyc File 13.32 KB 0644
stringprep.cpython-34.pyo File 13.25 KB 0644
struct.cpython-34.pyc File 347 B 0644
struct.cpython-34.pyo File 347 B 0644
subprocess.cpython-34.pyc File 42.34 KB 0644
subprocess.cpython-34.pyo File 42.23 KB 0644
sunau.cpython-34.pyc File 17.88 KB 0644
sunau.cpython-34.pyo File 17.88 KB 0644
symbol.cpython-34.pyc File 2.6 KB 0644
symbol.cpython-34.pyo File 2.6 KB 0644
symtable.cpython-34.pyc File 11.04 KB 0644
symtable.cpython-34.pyo File 10.92 KB 0644
sysconfig.cpython-34.pyc File 16.88 KB 0644
sysconfig.cpython-34.pyo File 16.88 KB 0644
tabnanny.cpython-34.pyc File 7.57 KB 0644
tabnanny.cpython-34.pyo File 7.57 KB 0644
tarfile.cpython-34.pyc File 66.45 KB 0644
tarfile.cpython-34.pyo File 66.45 KB 0644
telnetlib.cpython-34.pyc File 18.94 KB 0644
telnetlib.cpython-34.pyo File 18.94 KB 0644
tempfile.cpython-34.pyc File 21.07 KB 0644
tempfile.cpython-34.pyo File 21.07 KB 0644
textwrap.cpython-34.pyc File 13.48 KB 0644
textwrap.cpython-34.pyo File 13.39 KB 0644
this.cpython-34.pyc File 1.29 KB 0644
this.cpython-34.pyo File 1.29 KB 0644
threading.cpython-34.pyc File 38.05 KB 0644
threading.cpython-34.pyo File 37.36 KB 0644
timeit.cpython-34.pyc File 10.8 KB 0644
timeit.cpython-34.pyo File 10.8 KB 0644
token.cpython-34.pyc File 3.53 KB 0644
token.cpython-34.pyo File 3.53 KB 0644
tokenize.cpython-34.pyc File 19.48 KB 0644
tokenize.cpython-34.pyo File 19.43 KB 0644
trace.cpython-34.pyc File 23.62 KB 0644
trace.cpython-34.pyo File 23.56 KB 0644
traceback.cpython-34.pyc File 10.83 KB 0644
traceback.cpython-34.pyo File 10.83 KB 0644
tracemalloc.cpython-34.pyc File 16.73 KB 0644
tracemalloc.cpython-34.pyo File 16.73 KB 0644
tty.cpython-34.pyc File 1.12 KB 0644
tty.cpython-34.pyo File 1.12 KB 0644
types.cpython-34.pyc File 5.43 KB 0644
types.cpython-34.pyo File 5.43 KB 0644
uu.cpython-34.pyc File 3.93 KB 0644
uu.cpython-34.pyo File 3.93 KB 0644
uuid.cpython-34.pyc File 21.35 KB 0644
uuid.cpython-34.pyo File 21.29 KB 0644
warnings.cpython-34.pyc File 11.98 KB 0644
warnings.cpython-34.pyo File 11.27 KB 0644
wave.cpython-34.pyc File 18.69 KB 0644
wave.cpython-34.pyo File 18.63 KB 0644
weakref.cpython-34.pyc File 19.87 KB 0644
weakref.cpython-34.pyo File 19.83 KB 0644
webbrowser.cpython-34.pyc File 16.73 KB 0644
webbrowser.cpython-34.pyo File 16.69 KB 0644
xdrlib.cpython-34.pyc File 8.79 KB 0644
xdrlib.cpython-34.pyo File 8.79 KB 0644
zipfile.cpython-34.pyc File 44.75 KB 0644
zipfile.cpython-34.pyo File 44.7 KB 0644