| Server IP : 172.67.179.166 / Your IP : 172.70.223.229 Web Server : nginx/1.20.2 System : Linux 172-104-110-161.ip.linodeusercontent.com 3.10.0-1160.36.2.el7.x86_64 #1 SMP Wed Jul 21 11:57:15 UTC 2021 x86_64 User : www ( 1000) PHP Version : 8.1.9 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/2616/root/usr/lib64/python2.7/ |
Upload File : |
�
�_c @ s� d Z d d d d d d d g Z d d l Z d e f d
� � YZ i 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.7/dummy_thread.pyt __init__ s ( t __name__t
__module__t __doc__R ( ( ( s$ /usr/lib64/python2.7/dummy_thread.pyR s c C s� t | � t t � � k r* t d � � n t | � t t � � k rT t d � � n t a y | | | � Wn! t k
r~ n t j � n Xt a t
r� 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.7/dummy_thread.pyR s
c C s
t � d S( s&