⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.30
Server IP:
45.79.8.107
Server:
Linux localhost 5.15.0-140-generic #150-Ubuntu SMP Sat Apr 12 06:00:09 UTC 2025 x86_64
Server Software:
nginx/1.18.0
PHP Version:
8.1.2-1ubuntu2.21
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
lib
/
python3.10
/
__pycache__
/
View File Name :
gzip.cpython-310.pyc
o }5hYU @ s d Z ddlZddlZddlZddlZddlZddlZddlZddlZg dZ d\Z ZZZ Zd\ZZdZdZdZd edddfd dZdd ZG dd dZG dd deZG dd dejZG dd dejZefddddZdd Zdd Ze dkre dS dS )zFunctions that read and write gzipped files. The user of the file doesn't have to worry about the compression, but random access is not allowed. N)BadGzipFileGzipFileopencompress decompress) )r r r rbc C s d|v rd|v rt d|f n|durt d|dur t d|dur(t d|dd}t| tttjfr>t| ||}nt| d sHt| d rPtd||| }nt dd|v ret |}t ||||S |S )a Open a gzip-compressed file in binary or text mode. The filename argument can be an actual filename (a str or bytes object), or an existing file object to read from or write to. The mode argument can be "r", "rb", "w", "wb", "x", "xb", "a" or "ab" for binary mode, or "rt", "wt", "xt" or "at" for text mode. The default mode is "rb", and the default compresslevel is 9. For binary mode, this function is equivalent to the GzipFile constructor: GzipFile(filename, mode, compresslevel). In this case, the encoding, errors and newline arguments must not be provided. For text mode, a GzipFile object is created, and wrapped in an io.TextIOWrapper instance with the specified encoding, error handling behavior, and line ending(s). tbzInvalid mode: %rNz0Argument 'encoding' not supported in binary modez.Argument 'errors' not supported in binary modez/Argument 'newline' not supported in binary mode readwritez1filename must be a str or bytes object, or a file) ValueErrorreplace isinstancestrbytesosPathLiker hasattr TypeErrorio text_encoding TextIOWrapper)filenamemode compresslevelencodingerrorsnewlinegz_modebinary_file r( /usr/lib/python3.10/gzip.pyr s( r c C s | td| d S )Nz