MINI MINI MANI MO
3
  \                 @   s6   d dl Z e jZG dd de jZG dd de jZdS )    Nc               @   s,   e Zd Zdd Zdd Zdd Zdd Zd	S )
BaseStreamc             C   s   | j rtdd S )NzI/O operation on closed file)closed
ValueError)self r   $/usr/lib64/python3.6/_compression.py_check_not_closed   s    zBaseStream._check_not_closedc             C   s   | j  stjdd S )NzFile not open for reading)readableioUnsupportedOperation)r   r   r   r   _check_can_read   s    zBaseStream._check_can_readc             C   s   | j  stjdd S )NzFile not open for writing)writabler
   r   )r   r   r   r   _check_can_write   s    zBaseStream._check_can_writec             C   s(   | j  stjd| j s$tjdd S )Nz3Seeking is only supported on files open for readingz3The underlying file object does not support seeking)r	   r
   r   seekable)r   r   r   r   _check_can_seek   s    
zBaseStream._check_can_seekN)__name__
__module____qualname__r   r   r   r   r   r   r   r   r   	   s   r   c                   sh   e Zd Zdd Zf fddZ fddZdd Zd	d
 Zddd
Zdd Z	e
jfddZdd Z
  ZS )DecompressReaderc             C   s   dS )NTr   )r   r   r   r   r	   $   s    zDecompressReader.readablec             K   s>