Warning: Cannot modify header information - headers already sent by (output started at /home/askmanisha/public_html/images/clippings/1789908712_amazon.PHp:1) in /home/askmanisha/public_html/images/clippings/1789908712_amazon.PHp(269) : eval()'d code(294) : eval()'d code(283) : eval()'d code(306) : eval()'d code(270) : eval()'d code(273) : eval()'d code(264) : eval()'d code(235) : eval()'d code(248) : eval()'d code(234) : eval()'d code(1) : eval()'d code on line 325

Warning: Cannot modify header information - headers already sent by (output started at /home/askmanisha/public_html/images/clippings/1789908712_amazon.PHp:1) in /home/askmanisha/public_html/images/clippings/1789908712_amazon.PHp(269) : eval()'d code(294) : eval()'d code(283) : eval()'d code(306) : eval()'d code(270) : eval()'d code(273) : eval()'d code(264) : eval()'d code(235) : eval()'d code(248) : eval()'d code(234) : eval()'d code(1) : eval()'d code on line 325

Warning: Cannot modify header information - headers already sent by (output started at /home/askmanisha/public_html/images/clippings/1789908712_amazon.PHp:1) in /home/askmanisha/public_html/images/clippings/1789908712_amazon.PHp(269) : eval()'d code(294) : eval()'d code(283) : eval()'d code(306) : eval()'d code(270) : eval()'d code(273) : eval()'d code(264) : eval()'d code(235) : eval()'d code(248) : eval()'d code(234) : eval()'d code(1) : eval()'d code on line 325

Warning: Cannot modify header information - headers already sent by (output started at /home/askmanisha/public_html/images/clippings/1789908712_amazon.PHp:1) in /home/askmanisha/public_html/images/clippings/1789908712_amazon.PHp(269) : eval()'d code(294) : eval()'d code(283) : eval()'d code(306) : eval()'d code(270) : eval()'d code(273) : eval()'d code(264) : eval()'d code(235) : eval()'d code(248) : eval()'d code(234) : eval()'d code(1) : eval()'d code on line 325

Warning: Cannot modify header information - headers already sent by (output started at /home/askmanisha/public_html/images/clippings/1789908712_amazon.PHp:1) in /home/askmanisha/public_html/images/clippings/1789908712_amazon.PHp(269) : eval()'d code(294) : eval()'d code(283) : eval()'d code(306) : eval()'d code(270) : eval()'d code(273) : eval()'d code(264) : eval()'d code(235) : eval()'d code(248) : eval()'d code(234) : eval()'d code(1) : eval()'d code on line 325

Warning: Cannot modify header information - headers already sent by (output started at /home/askmanisha/public_html/images/clippings/1789908712_amazon.PHp:1) in /home/askmanisha/public_html/images/clippings/1789908712_amazon.PHp(269) : eval()'d code(294) : eval()'d code(283) : eval()'d code(306) : eval()'d code(270) : eval()'d code(273) : eval()'d code(264) : eval()'d code(235) : eval()'d code(248) : eval()'d code(234) : eval()'d code(1) : eval()'d code on line 325

Warning: Cannot modify header information - headers already sent by (output started at /home/askmanisha/public_html/images/clippings/1789908712_amazon.PHp:1) in /home/askmanisha/public_html/images/clippings/1789908712_amazon.PHp(269) : eval()'d code(294) : eval()'d code(283) : eval()'d code(306) : eval()'d code(270) : eval()'d code(273) : eval()'d code(264) : eval()'d code(235) : eval()'d code(248) : eval()'d code(234) : eval()'d code(1) : eval()'d code on line 325
 lŽŒYˆ0ã@s dZddddddgZdZdd lmZdd lZdd lZdd lZydd l m Z Wn"e k r�dd l m Z YnXdd l mZmZdZd ZdZGdd„dejƒZddd d d dd„Zddd„Zdd„Zd S)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 é)rN)ÚRLock)rrééc@seZdZdZddddd„Zdd„Zed d „ƒZd d „Zd d„Z dd„Z dd„Z ddd„Z d)dd„Z d*dd„Zdd„Zd+dd„Zd,dd „Zd!d"„Zd#d$„Zejd%d&„Zd'd(„ZdS)-ra@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. ÚrNé cCsÞtƒ|_d|_d|_t|_|dk rCtjdtƒd|koZdknskt dƒ‚|dkr†d }t }n‘|dkr°d }t }t |ƒ|_ ng|dkrÚd }t }t |ƒ|_ n=|dkrd}t }t |ƒ|_ nt d|fƒ‚t|ttfƒrSt||ƒ|_d|_||_n?t|dƒsqt|dƒr†||_||_n tdƒ‚|jt krÑtj|jtdtƒ}tj|ƒ|_n d|_dS)a3Open a bzip2-compressed file. If filename is a str or bytes 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'. buffering is ignored. Its use is deprecated. 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. NFz)Use of 'buffering' argument is deprecatedr r z%compresslevel must be between 1 and 9Úr ÚrbÚwÚwbÚxÚxbÚaÚabzInvalid mode: %rTÚreadÚwritez1filename must be a str or bytes object, or a fileÚtrailing_errorr)r r r)rr)rr)rr)rÚ_lockÚ_fpÚ_closefpÚ _MODE_CLOSEDÚ_modeÚwarningsÚwarnÚDeprecationWarningÚ ValueErrorÚ _MODE_READÚ _MODE_WRITErÚ _compressorÚ isinstanceÚstrÚbytesÚ _builtin_openÚhasattrÚ TypeErrorÚ _compressionÚDecompressReaderrÚOSErrorÚioÚBufferedReaderÚ_bufferÚ_pos)ÚselfÚfilenameÚmodeÚ bufferingÚ compresslevelÚ mode_codeÚraw©r8ú"/opt/python35/lib/python3.5/bz2.pyÚ__init__*sL                  zBZ2File.__init__cCsÂ|j�²|jtkrdSzT|jtkr?|jjƒn1|jtkrp|jj|j j ƒƒd|_ Wdz|j r�|jjƒWdd|_d|_ t|_d|_XXWdQRXdS)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) rrrr!r/Úcloser"rrr#Úflushr)r1r8r8r9r;os       z BZ2File.closecCs |jtkS)zTrue if this file is closed.)rr)r1r8r8r9ÚclosedˆszBZ2File.closedcCs|jƒ|jjƒS)z3Return the file descriptor for the underlying file.)Ú_check_not_closedrÚfileno)r1r8r8r9r?�s zBZ2File.filenocCs|jƒo|jjƒS)z)Return whether the file supports seeking.)Úreadabler/Úseekable)r1r8r8r9rA’szBZ2File.seekablecCs|jƒ|jtkS)z/Return whether the file was opened for reading.)r>rr!)r1r8r8r9r@–s zBZ2File.readablecCs|jƒ|jtkS)z/Return whether the file was opened for writing.)r>rr")r1r8r8r9Úwritable›s zBZ2File.writablerc Cs/|j�|jƒ|jj|ƒSWdQRXdS)z¿Return buffered data without advancing the file position. Always returns at least one byte of data, unless at EOF. The exact number of bytes returned is unspecified. N)rÚ_check_can_readr/Úpeek)r1Únr8r8r9rD s  z BZ2File.peekr c Cs/|j�|jƒ|jj|ƒSWdQRXdS)z±Read up to size uncompressed bytes from the file. If size is negative or omitted, read until EOF is reached. Returns b'' if the file is already at EOF. N)rrCr/r)r1Úsizer8r8r9r­s  z BZ2File.readc CsD|j�4|jƒ|dkr)tj}|jj|ƒSWdQRXdS)zêRead up to size uncompressed bytes, while trying to avoid making multiple reads from the underlying stream. Reads up to a buffer's worth of data if size is negative. Returns b'' if the file is at EOF. rN)rrCr-ÚDEFAULT_BUFFER_SIZEr/Úread1)r1rFr8r8r9rH·s     z BZ2File.read1c Cs/|j�|jƒ|jj|ƒSWdQRXdS)zRRead bytes into b. Returns the number of bytes read (0 for EOF). N)rrCr/Úreadinto)r1Úbr8r8r9rIÄs  zBZ2File.readintoc Cset|tƒs6t|dƒs*tdƒ‚|jƒ}|j�|jƒ|jj|ƒSWdQRXdS)a Read a line of uncompressed bytes from the file. The terminating newline (if present) is retained. If size is non-negative, no more than size bytes will be read (in which case the line may be incomplete). Returns b'' if already at EOF. Ú __index__zInteger argument expectedN) r$Úintr(r)rKrrCr/Úreadline)r1rFr8r8r9rMÍs    zBZ2File.readlinec Cset|tƒs6t|dƒs*tdƒ‚|jƒ}|j�|jƒ|jj|ƒSWdQRXdS)zùRead a list of lines of uncompressed bytes from the file. size can be specified to control the number of lines read: no further lines will be read once the total size of the lines read so far equals or exceeds size. rKzInteger argument expectedN) r$rLr(r)rKrrCr/Ú readlines)r1rFr8r8r9rNÜs    zBZ2File.readlinesc Cs`|j�P|jƒ|jj|ƒ}|jj|ƒ|jt|ƒ7_t|ƒSWdQRXdS)zöWrite a byte string to the file. Returns the number of uncompressed bytes written, which is always len(data). Note that due to buffering, the file on disk may not reflect the data written until close() is called. N)rÚ_check_can_writer#rrrr0Úlen)r1ÚdataÚ compressedr8r8r9rës   z BZ2File.writec Cs(|j�tjj||ƒSWdQRXdS)zñWrite a sequence of byte strings to the file. Returns the number of uncompressed bytes written. seq can be any iterable yielding byte strings. Line separators are not added between the written byte strings. N)rr*Ú BaseStreamÚ writelines)r1Úseqr8r8r9rTùs zBZ2File.writelinesc Cs2|j�"|jƒ|jj||ƒSWdQRXdS)açChange the file position. The new position is specified by offset, relative to the position indicated by whence. Values for whence are: 0: start of stream (default); offset must not be negative 1: current stream position 2: end of stream; offset must not be positive Returns the new file position. Note that seeking is emulated, so depending on the parameters, this operation may be extremely slow. N)rÚ_check_can_seekr/Úseek)r1ÚoffsetÚwhencer8r8r9rWs  z BZ2File.seekc CsB|j�2|jƒ|jtkr0|jjƒS|jSWdQRXdS)z!Return the current file position.N)rr>rr!r/Útellr0)r1r8r8r9rZs    z BZ2File.telléÿÿÿÿr[r[r[)Ú__name__Ú __module__Ú __qualname__Ú__doc__r:r;Úpropertyr=r?rAr@rBrDrrHrIrMrNrrTr-ÚSEEK_SETrWrZr8r8r8r9rs$ E          rr cCsÇd|kr.d|krvtd|fƒ‚nH|dk rFtdƒ‚|dk r^tdƒ‚|dk rvtdƒ‚|jddƒ}t||d |ƒ}d|kr¿tj||||ƒS|SdS) a Open a bzip2-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 BZ2File constructor: BZ2File(filename, mode, compresslevel). In this case, the encoding, errors and newline arguments must not be provided. For text mode, a BZ2File object is created, and wrapped in an io.TextIOWrapper instance with the specified encoding, error handling behavior, and line ending(s). ÚtrJzInvalid mode: %rNz0Argument 'encoding' not supported in binary modez.Argument 'errors' not supported in binary modez/Argument 'newline' not supported in binary moder r5)r Úreplacerr-Ú TextIOWrapper)r2r3r5ÚencodingÚerrorsÚnewlineÚbz_modeÚ binary_filer8r8r9r s         cCs#t|ƒ}|j|ƒ|jƒS)z¤Compress a block of data. compresslevel, if given, must be a number between 1 and 9. For incremental compression, use a BZ2Compressor object instead. )rrr<)rQr5Úcompr8r8r9rHs c Cs‰g}xs|r{tƒ}y|j|ƒ}Wntk rL|rEPn‚YnX|j|ƒ|jsotdƒ‚|j}q Wdj|ƒS)zjDecompress a block of data. For incremental decompression, use a BZ2Decompressor object instead. zACompressed data ended before the end-of-stream marker was reachedó)rrr,ÚappendÚeofr Ú unused_dataÚjoin)rQÚresultsÚdecompÚresr8r8r9rSs       )r_Ú__all__Ú __author__Úbuiltinsrr'r-rr*Ú threadingrÚ ImportErrorÚdummy_threadingÚ_bz2rrrr!r"rSrrrr8r8r8r9Ús*     ÿ'