Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found
in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 88
Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 215
Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 216
Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 217
Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 218
Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 219
Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 220
ž
¬ÿfS_ c @ sB d Z d d l Z d d l Z d d l Z d d l Z d d l Z d d l Z d d l Z d d d d g Z d d d d
d f \ Z Z
Z Z Z
d d f \ Z Z d d
e e e d d „ Z d d „ Z d d „ Z Gd d „ d ƒ Z Gd d „ d e j ƒ Z d
d d „ Z d d „ Z d d „ Z e d k r>e ƒ n d S( u‘ Functions 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.i Nu GzipFileu openu compressu
decompressi i i i i u rbi c C s* d | k r1 d | k r‚ t d | f ƒ ‚ q‚ nQ | d k rL t d ƒ ‚ n | d k rg t d ƒ ‚ n | d k r‚ t d ƒ ‚ n | j d d ƒ } t | t t f ƒ r¾ t | | | ƒ } nB t | d ƒ sÜ t | d ƒ rô t d | | | ƒ } n t d
ƒ ‚ d | k r"t j
| | | | ƒ S| Sd S( uû 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", "a" or "ab" for binary mode,
or "rt", "wt" 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).
u tu bu Invalid mode: %ru0 Argument 'encoding' not supported in binary modeu. Argument 'errors' not supported in binary modeu/ Argument 'newline' not supported in binary modeu u readu writeu1 filename must be a str or bytes object, or a fileN( u
ValueErroru Noneu replaceu
isinstanceu stru bytesu GzipFileu hasattru TypeErroru iou
TextIOWrapper( u filenameu modeu
compresslevelu encodingu errorsu newlineu gz_modeu binary_file( ( u) /opt/alt/python33/lib64/python3.3/gzip.pyu open s$ c C s | j t j d | ƒ ƒ d S( Nu