0x1949 Team - FAZEMRX - MANAGER
Edit File: bz2.cpython-310.pyc
o ��+gG. � @ s� d Z g d�ZdZddlmZ ddlZddlZddlZddl m Z mZ dZdZ dZG d d � d ej�Z dd d�Zddd�Zdd� ZdS )z�Interface to the libbzip2 compression library. This module provides a file interface, classes for incremental (de)compression, and functions for one-shot (de)compression. )�BZ2File� BZ2Compressor�BZ2Decompressor�open�compress� decompressz%Nadeem Vawda <nadeem.vawda@gmail.com>� )r N)r r � � c @ s� e Zd ZdZd*dd�dd�Zdd� Zed d � �Zdd� Zd d� Z dd� Z dd� Zd+dd�Zd,dd�Z d,dd�Zdd� Zd,dd�Zd,dd �Zd!d"� Zd#d$� Zejfd%d&�Zd'd(� Zd)S )-r a@ A file object providing transparent bzip2 (de)compression. A BZ2File can act as a wrapper for an existing file object, or refer directly to a named file on disk. Note that BZ2File provides a *binary* file interface - data read is returned as bytes, and data to be written should be given as bytes. �r� �� compresslevelc C s6 d| _ d| _t| _d| krdkstd�� td��|dv r$d}t}n1|dv r2d }t}t|�| _n#|d v r@d}t}t|�| _n|dv rNd }t}t|�| _ntd|f ��t |t ttj f�rkt||�| _ d| _|| _nt|d�sut|d�r||| _ || _ntd��| jtkr�tj| j ttd�}t�|�| _dS d| _dS )a Open a bzip2-compressed file. If filename is a str, bytes, or PathLike object, it gives the name of the file to be opened. Otherwise, it should be a file object, which will be used to read or write the compressed data. mode can be 'r' for reading (default), 'w' for (over)writing, 'x' for creating exclusively, or 'a' for appending. These can equivalently be given as 'rb', 'wb', 'xb', and 'ab'. If mode is 'w', 'x' or 'a', compresslevel can be a number between 1 and 9 specifying the level of compression: 1 produces the least compression, and 9 (default) produces the most compression. If mode is 'r', the input file may be the concatenation of multiple compressed streams. NFr r z%compresslevel must be between 1 and 9)� r �rbr )�w�wbr )�x�xbr )�a�abr �Invalid mode: %rT�read�writez6filename must be a str, bytes, file or PathLike object)�trailing_errorr )�_fp�_closefp�_MODE_CLOSED�_mode� ValueError� _MODE_READ�_MODE_WRITEr �_compressor� isinstance�str�bytes�os�PathLike� _builtin_open�hasattr� TypeError�_compression�DecompressReaderr �OSError�io�BufferedReader�_buffer�_pos)�self�filename�moder � mode_code�raw� r6 �/usr/lib/python3.10/bz2.py�__init__% sJ � � zBZ2File.__init__c C s | j tkrdS zQ| j tkr| j�� n| j tkr$| j�| j� � � d| _W z&| j r=| j�� W d| _d| _ t| _ d| _dS W d| _d| _ t| _ d| _dS d| _d| _ t| _ d| _w z$| j rp| j�� W d| _d| _ t| _ d| _w W d| _d| _ t| _ d| _w d| _d| _ t| _ d| _w )z�Flush and close the file. May be called more than once without error. Once the file is closed, any other operation on it will raise a ValueError. NF)r r r r/ �closer r r r! �flushr �r1 r6 r6 r7 r9 a sR � � ����z BZ2File.closec C s | j tkS )zTrue if this file is closed.)r r r; r6 r6 r7 �closedy s zBZ2File.closedc C s | � � | j�� S )z3Return the file descriptor for the underlying file.)�_check_not_closedr �filenor; r6 r6 r7 r>