Current Path: > > opt > alt > python35 > lib64 > python3.5 > > > multiprocessing
Operation : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
__pycache__ | Directory | - | - | |
dummy | Directory | - | - | |
__init__.py | File | 923 bytes | May 31 2024 13:51:40. | |
connection.py | File | 30857 bytes | May 31 2024 13:51:40. | |
context.py | File | 10677 bytes | May 31 2024 13:51:40. | |
forkserver.py | File | 8214 bytes | May 31 2024 13:51:40. | |
heap.py | File | 8325 bytes | May 31 2024 13:51:40. | |
managers.py | File | 35963 bytes | May 31 2024 13:51:40. | |
pool.py | File | 25819 bytes | May 31 2024 13:51:40. | |
popen_fork.py | File | 2327 bytes | May 31 2024 13:51:40. | |
popen_forkserver.py | File | 1967 bytes | May 31 2024 13:51:40. | |
popen_spawn_posix.py | File | 1915 bytes | May 31 2024 13:51:40. | |
popen_spawn_win32.py | File | 2998 bytes | May 31 2024 13:51:40. | |
process.py | File | 9136 bytes | May 31 2024 13:51:40. | |
queues.py | File | 10751 bytes | May 31 2024 13:51:40. | |
reduction.py | File | 8108 bytes | May 31 2024 13:51:40. | |
resource_sharer.py | File | 5318 bytes | May 31 2024 13:51:40. | |
semaphore_tracker.py | File | 4820 bytes | May 31 2024 13:51:40. | |
sharedctypes.py | File | 6228 bytes | May 31 2024 13:51:40. | |
spawn.py | File | 8860 bytes | May 31 2024 13:51:40. | |
synchronize.py | File | 12052 bytes | May 31 2024 13:51:40. | |
util.py | File | 11641 bytes | May 31 2024 13:51:40. |
# # Package analogous to 'threading.py' but using processes # # multiprocessing/__init__.py # # This package is intended to duplicate the functionality (and much of # the API) of threading.py but uses processes instead of threads. A # subpackage 'multiprocessing.dummy' has the same API but is a simple # wrapper for 'threading'. # # Copyright (c) 2006-2008, R Oudkerk # Licensed to PSF under a Contributor Agreement. # import sys from . import context # # Copy stuff from default context # globals().update((name, getattr(context._default_context, name)) for name in context._default_context.__all__) __all__ = context._default_context.__all__ # # XXX These should not really be documented or public. # SUBDEBUG = 5 SUBWARNING = 25 # # Alias for main module -- will be reset by bootstrapping child processes # if '__main__' in sys.modules: sys.modules['__mp_main__'] = sys.modules['__main__']
SILENT KILLER Tool