| Server IP : 85.214.239.14 / Your IP : 216.73.216.27 Web Server : Apache/2.4.65 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 8.2.29 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /proc/3/task/3/cwd/usr/lib/python2.7/ |
Upload File : |
�
�, bc @ 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"