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
Yf0 @ s d Z d d l Z d d l m Z d d l m Z d d d d d d
d g Z Gd d d e Z Gd
d d e Z d d Z
Gd d d e Z Gd d d Z Gd d d e Z
Gd d
d
e Z Gd d d Z Gd d d e Z d S)z4Utilities for with-statement contexts. See PEP 343. N)deque)wrapscontextmanagerclosingContextDecorator ExitStackredirect_stdoutredirect_stderrsuppressc @ s. e Z d Z d Z d d Z d d Z d S)r zJA base class or mixin that enables context managers to work as decorators.c C s | S)a6 Return a recreated instance of self.
Allows an otherwise one-shot context manager like
_GeneratorContextManager to support use as
a decorator via implicit recreation.
This is a private interface just for _GeneratorContextManager.
See issue #11647 for details.
)selfr r //opt/alt/python35/lib64/python3.5/contextlib.py_recreate_cm s
zContextDecorator._recreate_cmc s% t f d d } | S)Nc
s% j | | SWd QRXd S)N)r )argskwds)funcr r r
inner s
z(ContextDecorator.__call__..inner)r )r r r r )r r r
__call__ s !zContextDecorator.__call__N)__name__
__module____qualname____doc__r r r r r r
r s c @ sF e Z d Z d Z d d Z d d Z d d Z d d Z d
S)_GeneratorContextManagerz%Helper for @contextmanager decorator.c C si | | | | _ | | | | _ | _ | _ t | d d } | d k r\ t | j } | | _ d S)Nr )genr r r getattrtyper )r r r r docr r r
__init__% s z!_GeneratorContextManager.__init__c C s | j | j | j | j S)N) __class__r r r )r r r r
r 3 s z%_GeneratorContextManager._recreate_cmc C s9 y t | j SWn! t k
r4 t d d Yn Xd S)Nzgenerator didn't yield)nextr
StopIterationRuntimeError)r r r r
__enter__9 s
z"_GeneratorContextManager.__enter__c C s0 | d k rE y t | j Wn t k
r5 d SYq,Xt d n | d k rZ | } y | j j | | | Wn t k
r } z | | k SWYd d } ~ Xn{ t k
r } z7 | | k r d S| t k r | j | k r d S WYd d } ~ Xn% t j d | k rd S Yn Xt d d S)NFzgenerator didn't stop z#generator didn't stop after throw())r r r r! throw __cause__sysexc_info)r r value tracebackexcr r r
__exit__? s.
z!_GeneratorContextManager.__exit__N)r r r r r r r" r+ r r r r
r " s
r c s" t f d d } | S)a @contextmanager decorator.
Typical usage:
@contextmanager
def some_generator():
try:
yield
finally:
This makes this:
with some_generator() as :
equivalent to this:
try:
=
finally:
c s t | | S)N)r )r r )r r r
helper s zcontextmanager..helper)r )r r, r )r r
r k s c @ s: e Z d Z d Z d d Z d d Z d d Z d S) r a2 Context to automatically close something at the end of a block.
Code like this:
with closing(.open()) as f:
is equivalent to this:
f = .open()
try:
finally:
f.close()
c C s
| | _ d S)N)thing)r r- r r r
r s zclosing.__init__c C s | j S)N)r- )r r r r
r" s zclosing.__enter__c G s | j j d S)N)r- close)r r' r r r
r+ s zclosing.__exit__N)r r r r r r" r+ r r r r
r s c @ s: e Z d Z d Z d d Z d d Z d d Z d S)_RedirectStreamNc C s | | _ g | _ d S)N)_new_target_old_targets)r
new_targetr r r
r s z_RedirectStream.__init__c C s9 | j j t t | j t t | j | j | j S)N)r1 appendr r&