?¡ëPNG
IHDR ? f ??C1 sRGB ??¨¦ gAMA ¡À?¨¹a pHYs ? ??o¡§d GIDATx^¨ª¨¹L¡±¡Âe¡ÂY?a?("Bh?_¨°???¡é¡ì?q5k?*:t0A-o??£¤]VkJ¡éM??f?¡À8\k2¨ªll¡ê1]q?¨´???T
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/user1137782/www/china1.by/classwithtostring.php on line 86
Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 213
Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 214
Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 215
Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 216
Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 217
Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 218
Ñò
§ÚêLc @ s¥ d Z d d d d d d d g Z d d k Z d e f d
„ ƒ YZ h d „ Z d „ Z d
„ Z d „ Z d d „ Z d e f d „ ƒ YZ
e a e a d „ Z d S( s, Drop-in replacement for the thread module.
Meant to be used as a brain-dead substitute so that threaded code does
not need to be rewritten for when the thread module is not present.
Suggested usage is::
try:
import thread
except ImportError:
import dummy_thread as thread
t errort start_new_threadt exitt get_identt
allocate_lockt interrupt_maint LockTypeiÿÿÿÿNc B s e Z d Z d „ Z RS( s% Dummy implementation of thread.error.c G s
| | _ d S( N( t args( t selfR ( ( s$ /usr/lib64/python2.6/dummy_thread.pyt __init__ s ( t __name__t
__module__t __doc__R ( ( ( s$ /usr/lib64/python2.6/dummy_thread.pyR s c C s¶ t | ƒ t t ƒ ƒ j o t d ƒ ‚ n t | ƒ t t ƒ ƒ j o t d ƒ ‚ n t a y | | | Ž Wn# t j
o n t i ƒ n Xt a t
o t a
t ‚ n d S( sä Dummy implementation of thread.start_new_thread().
Compatibility is maintained by making sure that ``args`` is a
tuple and ``kwargs`` is a dictionary. If an exception is raised
and it is SystemExit (which can be done by thread.exit()) it is
caught and nothing is done; all other exceptions are printed out
by using traceback.print_exc().
If the executed function calls interrupt_main the KeyboardInterrupt will be
raised when the function returns.
s 2nd arg must be a tuples 3rd arg must be a dictN( t typet tuplet TypeErrort dictt Falset _maint
SystemExitt
_tracebackt print_exct Truet
_interruptt KeyboardInterrupt( t functionR t kwargs( ( s$ /usr/lib64/python2.6/dummy_thread.pyR s
c C s
t ‚ d S( s&