Current Path: > > opt > alt > python37 > lib64 > python3.7 > 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 | April 17 2024 17:36:03. | |
connection.py | File | 31298 bytes | April 17 2024 17:36:04. | |
context.py | File | 10923 bytes | April 17 2024 17:36:04. | |
forkserver.py | File | 12401 bytes | April 17 2024 17:36:04. | |
heap.py | File | 8918 bytes | April 17 2024 17:36:03. | |
managers.py | File | 40985 bytes | April 17 2024 17:36:03. | |
pool.py | File | 26834 bytes | April 17 2024 17:36:04. | |
popen_fork.py | File | 2394 bytes | April 17 2024 17:36:04. | |
popen_forkserver.py | File | 2016 bytes | April 17 2024 17:36:03. | |
popen_spawn_posix.py | File | 1921 bytes | April 17 2024 17:36:03. | |
popen_spawn_win32.py | File | 3766 bytes | April 17 2024 17:36:04. | |
process.py | File | 10548 bytes | April 17 2024 17:36:04. | |
queues.py | File | 11587 bytes | April 17 2024 17:36:03. | |
reduction.py | File | 9361 bytes | April 17 2024 17:36:04. | |
resource_sharer.py | File | 5351 bytes | April 17 2024 17:36:03. | |
semaphore_tracker.py | File | 5467 bytes | April 17 2024 17:36:04. | |
sharedctypes.py | File | 6306 bytes | April 17 2024 17:36:04. | |
spawn.py | File | 8848 bytes | April 17 2024 17:36:04. | |
synchronize.py | File | 11585 bytes | April 17 2024 17:36:04. | |
util.py | File | 13676 bytes | April 17 2024 17:36:03. |
# # 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