Uname: Linux server.digisquadtech.com 4.18.0-553.100.1.el8_10.x86_64 #1 SMP Mon Feb 2 04:13:33 EST 2026 x86_64
User: 1091 (madhavfluid)
Group: 1090 (madhavfluid)
Disabled functions: NONE
Safe mode: On[ PHPinfo ]
//usr/lib64/python3.6///__pycache__      ( Reset | Go to )
File Name: gzip.cpython-36.pyc
3

 \nO@sdZddlZddlZddlZddlZddlZddlZddlZddlZddddgZ    d\Z
Z Z Z Zd\ZZdddZddZGdddZGdddejZGdddejZdddZddZddZedkredS)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.NGzipFileopencompress
decompressrb    cCsd|kr d|krPtd|fn0|dk    r0td|dk    r@td|dk    rPtd|jdd}t|tttjfr|t|||}n,t|d    st|d
rtd|||}nt    d d|krt
j ||||S|SdS) 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 modereadwritez1filename must be a str or bytes object, or a file)
ValueErrorreplace
isinstancestrbytesosPathLikerhasattr    TypeErrorio TextIOWrapper)filenamemode compresslevelencodingerrorsnewlineZgz_modeZ binary_filer#/usr/lib64/python3.6/gzip.pyrs$ cCs|jtjd|dS)Nz<L)rstructZpack)outputvaluer#r#r$write32u@sr(c@s<eZdZdZdddZddZdddZd    d
Zd d Zd S) _PaddedFilezMinimal read-only file object that prepends a string to the contents
    of an actual file. Shouldn't be used outside of gzip.py, as it lacks
    essential functionality.cCs ||_t||_||_d|_dS)Nr)_bufferlen_lengthfile_read)selffprependr#r#r$__init__Js
z_PaddedFile.__init__cCs~|jdkr|jj|S|j||jkrJ|j}|j|7_|j||jS|j}d|_|j|d|jj||j|SdS)N)r/r.rr-r+)r0sizerr#r#r$rPs
  z_PaddedFile.readcCs>|jdkr||_n|jt|8_dSt|j|_d|_dS)Nr)r/r+r,r-)r0r2r#r#r$r2]s 
 z_PaddedFile.prependcCsd|_d|_|jj|S)N)r/r+r.seek)r0Zoffr#r#r$r5fsz_PaddedFile.seekcCsdS)NTr#)r0r#r#r$seekableksz_PaddedFile.seekableN)r*)r*)    __name__
__module__ __qualname____doc__r3rr2r5r6r#r#r#r$r)Es 

    r)c@seZdZdZdZd-ddZeddZedd    Zd
d Z    d d Z
ddZ ddZ d/ddZ d1ddZddZeddZddZejfddZdd Zd!d"Zd#d$Zd%d&Zd'd(Zejfd)d*Zd3d+d,ZdS)4ra
The GzipFile class simulates most of the methods of a file object with
    the exception of the truncate() method.

    This class only supports opening files in binary mode. If you need to open a
    compressed file in text mode, use the gzip.open() function.

    Nr cCs2|r"d|ksd|kr"tdj||r6d|kr6|d7}|dkrTtj||pJd}|_|dkr|t|dd}t|ttfsd}n
t    j
|}|dkrt|d    d}|j d
rt |_ t|}tj||_||_nN|j drt|_ |j|tj|tjtj tjd|_||_ntdj|||_|j tkr.|jdS)aGConstructor for the GzipFile class.

        At least one of fileobj and filename must be given a
        non-trivial value.

        The new class instance is based on fileobj, which can be a regular
        file, an io.BytesIO object, or any other object which simulates a file.
        It defaults to None, in which case filename is opened to provide
        a file object.

        When fileobj is not None, the filename argument is only used to be
        included in the gzip file header, which may include the original
        filename of the uncompressed file.  It defaults to the filename of
        fileobj, if discernible; otherwise, it defaults to the empty string,
        and in this case the original filename is not included in the header.

        The mode argument can be any of 'r', 'rb', 'a', 'ab', 'w', 'wb', 'x', or
        'xb' depending on whether the file will be read or written.  The default
        is the mode of fileobj if discernible; otherwise, the default is 'rb'.
        A mode of 'r' is equivalent to one of 'rb', and similarly for 'w' and
        'wb', 'a' and 'ab', and 'x' and 'xb'.

        The compresslevel argument is an integer from 0 to 9 controlling the
        level of compression; 1 is fastest and produces the least compression,
        and 9 is slowest and produces the most compression. 0 is no compression
        at all. The default is 9.

        The mtime argument is an optional numeric timestamp to be written
        to the last modification time field in the stream when compressing.
        If omitted or None, the current time is used.

        r UzInvalid mode: {!r}rNr namerrrwaxr)r>r?r@)rformatbuiltinsr    myfileobjgetattrrrrrfspath
startswithREADr _GzipReaderrBufferedReaderr+r<WRITE _init_writezlibZ compressobjZDEFLATED    MAX_WBITSZ DEF_MEM_LEVELr _write_mtimefileobj_write_gzip_header)r0rrrrOmtimerawr#r#r$r3{s>#  
 
  
 zGzipFile.__init__cCsBddl}|jdtd|jtkr<|jdddkr<|jdS|jS)Nrzuse the name attributerz.gz)warningswarnDeprecationWarningrrJr<)r0rUr#r#r$rs

zGzipFile.filenamecCs
|jjjS)z0Last modification time read from stream, or None)r+rR _last_mtime)r0r#r#r$rQszGzipFile.mtimecCs.t|j}d|dddtt|dS)Nz<gzip r >)reprrOhexid)r0sr#r#r$__repr__s
zGzipFile.__repr__cCs.||_tjd|_d|_g|_d|_d|_dS)Nr*r)r<rLcrc32crcr4Zwritebufbufsizeoffset)r0rr#r#r$rKs  zGzipFile._init_writec Cs|jjd|jjdy<tjj|j}t|ts<|jd}|j    drR|dd }Wnt
k
rld}YnXd}|rzt }|jjt |jd|j }|dkrtj}t|jt||jjd|jjd    |r|jj|d
dS) Nszlatin-1s.gzrSr*rrT)rOrrpathbasenamer<rrencodeendswithUnicodeEncodeErrorFNAMEchrrNtimer(int)r0ZfnameflagsrQr#r#r$rPs,  



  zGzipFile._write_gzip_headercCs|j|jtkr&ddl}t|jd|jdkr8tdt|t    rLt
|}nt |}|j }|dkr|jj |jj||j|7_tj||j|_|j|7_|S)Nrz$write() on read-only GzipFile objectz!write() on closed GzipFile object)_check_not_closedrrJerrnoOSErrorEBADFrOrrrr,
memoryviewnbytesrrr4rLrarbrd)r0datartZlengthr#r#r$rs 
 


zGzipFile.writercCs2|j|jtkr&ddl}t|jd|jj|S)Nrz$read() on write-only GzipFile object)rsrrGrtrurvr+r)r0r4rtr#r#r$rs

 z GzipFile.readcCs@|j|jtkr&ddl}t|jd|dkr4tj}|jj    |S)zdImplements BufferedIOBase.read1()

        Reads up to a buffer's worth of data is size is negative.rNz%read1() on write-only GzipFile object)
rsrrGrtrurvrDEFAULT_BUFFER_SIZEr+read1)r0r4rtr#r#r$r{s
 zGzipFile.read1cCs2|j|jtkr&ddl}t|jd|jj|S)Nrz$peek() on write-only GzipFile object)rsrrGrtrurvr+peek)r0nrtr#r#r$r|#s

 z GzipFile.peekcCs
|jdkS)N)rO)r0r#r#r$closed*szGzipFile.closedc Cs|j}|dkrdSd|_zP|jtkrR|j|jjt||jt||jd@n|jt    krf|j
j Wd|j }|rd|_ |j XdS)Nl) rOrrJrrflushr(rbr4rGr+closerC)r0rOrCr#r#r$r.s
 
zGzipFile.closecCs4|j|jtkr0|jj|jj||jjdS)N)rsrrJrOrrr)r0Z    zlib_moder#r#r$rAs
zGzipFile.flushcCs
|jjS)zInvoke the underlying file object's fileno() method.

        This will raise AttributeError if the underlying file object
        doesn't support fileno().
        )rOfileno)r0r#r#r$rHszGzipFile.filenocCs"|jtkrtd|jjddS)z[Return the uncompressed stream file position indicator to the
        beginning of the filezCan't rewind in write moderN)rrGrur+r5)r0r#r#r$rewindPs
zGzipFile.rewindcCs
|jtkS)N)rrG)r0r#r#r$readableWszGzipFile.readablecCs
|jtkS)N)rrJ)r0r#r#r$writableZszGzipFile.writablecCsdS)NTr#)r0r#r#r$r6]szGzipFile.seekablecCs|jtkr|tjkr2|tjkr*|j|}ntd||jkrDtd||j}dd}xt|dD]}|j    |qdW|j    d|dn |jt
kr|j |j j ||S|jS)NzSeek from end not supportedzNegative seek in write moderhi)rrJrSEEK_SETSEEK_CURrdrrurangerrGrsr+r5)r0rdwhencecountchunkir#r#r$r5`s 


 


z GzipFile.seekcCs|j|jj|S)N)rsr+readline)r0r4r#r#r$rtszGzipFile.readline)NNr NNr[)r[r[)r[r[)r[)r7r8r9r:rCr3propertyrrQr`rKrPrrr{r|r~rrLZ Z_SYNC_FLUSHrrrrrr6rrr5rr#r#r#r$rns.
H  

 csZeZdZfddZddZddZddZdd
d Zd d ZddZ    fddZ
Z S)rHcs,tjt|tjtj dd|_d|_dS)N)ZwbitsT)superr3r)rLZ decompressobjrM _new_memberrX)r0fp)    __class__r#r$r3zs z_GzipReader.__init__cCstjd|_d|_dS)Nr*r)rLra_crc _stream_size)r0r#r#r$
_init_reads z_GzipReader._init_readcCsJ|jj|}x8t||krD|jj|t|}|s:td||7}qW|S)zRead exactly *n* bytes from `self._fp`

        This method is required because self._fp may be unbuffered,
        i.e. return short reads.
        zACompressed file ended before the end-of-stream marker was reached)_fprr,EOFError)r0r}ryrr#r#r$ _read_exacts  z_GzipReader._read_exactcCs|jjd}|dkrdS|dkr,td|tjd|jd\}}|_|dkrVtd|t@r|tjd    |jd\}|j||t@rx |jjd
}| s|d krPqW|t    @rx |jjd
}| s|d krPqW|t
@r|jdd S) Nrr*FszNot a gzipped file (%r)z<BBIxxr    zUnknown compression methodz<HrrhT) rrrur%unpackrrXFEXTRArnFCOMMENTFHCRC)r0magicmethodflagZ    extra_lenr_r#r#r$_read_gzip_headers0  
  
z_GzipReader._read_gzip_headerrcCs|dkr|jS|sdSx|jjr@|jd|_|jf|j|_|jrh|j|jsb|j    |_
dSd|_|j j t j}|jj||}|jjdkr|j j|jjn|jjdkr|j j|jj|dkrP|dkrtdqW|j||j    t|7_    |S)Nrr*TFzACompressed file ended before the end-of-stream marker was reached)readallZ _decompressoreof    _read_eofrZ_decomp_factoryZ _decomp_argsrrZ_posZ_sizerrrrzrZunconsumed_tailr2Z unused_datar_add_read_datar,)r0r4bufZ
uncompressr#r#r$rs:
   
z_GzipReader.readcCs$tj||j|_|jt||_dS)N)rLrarrr,)r0ryr#r#r$rsz_GzipReader._add_read_datacCstjd|jd\}}||jkr<tdt|t|jfn||jd@krRtdd}x|dkrn|jjd}qXW|r|jj    |dS)Nz<IIr    zCRC check failed %s != %slz!Incorrect length of data producedrhr)
r%rrrrur]rrrr2)r0raZisizecr#r#r$rs


z_GzipReader._read_eofcstjd|_dS)NT)r_rewindr)r0)rr#r$rs
z_GzipReader._rewindr[)r[) r7r8r9r3rrrrrrr __classcell__r#r#)rr$rHys !
3rHc    Cs4tj}t|d|d}|j|WdQRX|jS)zCompress data in one shot and return the compressed string.
    Optional argument is the compression level, in range of 0-9.
    wb)rOrrN)rBytesIOrrgetvalue)ryrrr1r#r#r$rsc    Cs$ttj|d
}|jSQRXdS)zYDecompress a gzip compressed string in one shot.
    Return the decompressed string.
    )rON)rrrr)ryr1r#r#r$rscCs>tjdd}|o|ddk}|r.|dd}|s8dg}x|D]}|r|dkrltddtjjd}tjj}q|d dd    krtd
t|q@t|d}t    j|ddd }n>|dkrtjj}tdd tjjd}nt    j|d}t|d    d }x |j
d }|sP|j |qW|tjjk    r"|j |tjjk    r@|j q@WdS)Nrrz-d-rr )rrrOrSz.gzzfilename doesn't end in .gz:rirTrT) sysargvrstdinbufferstdoutprintr\rrBrrr)argsrargr1grr#r#r$_tests<  

 
 r__main__)rrrr    r
)rr)r r NNN)r )r:r%rrprrLrBrZ _compression__all__ZFTEXTrrrnrrGrJrr(r)Z
BaseStreamrZDecompressReaderrHrrrr7r#r#r#r$<module>s,  
+) 
    &

All system for education purposes only. For more tools: Telegram @jackleet

Mr.X Private Shell

Logo
-
New File | New Folder
Command
SQL