SILENT KILLERPanel

Current Path: > > opt > alt > python312 > lib64 > > python3.12 > > 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 ]

Files and Folders in: //opt/alt/python312/lib64//python3.12//multiprocessing

NameTypeSizeLast ModifiedActions
__pycache__ Directory - -
dummy Directory - -
__init__.py File 916 bytes June 23 2025 13:48:37.
connection.py File 41398 bytes June 23 2025 13:48:37.
context.py File 11673 bytes June 23 2025 13:48:37.
forkserver.py File 12202 bytes June 23 2025 13:48:37.
heap.py File 11626 bytes June 23 2025 13:48:37.
managers.py File 47893 bytes June 23 2025 13:48:37.
pool.py File 32760 bytes June 23 2025 13:48:37.
popen_fork.py File 2377 bytes June 23 2025 13:48:37.
popen_forkserver.py File 2230 bytes June 23 2025 13:48:37.
popen_spawn_posix.py File 2029 bytes June 23 2025 13:48:37.
popen_spawn_win32.py File 4515 bytes June 23 2025 13:48:37.
process.py File 12139 bytes June 23 2025 13:48:37.
queues.py File 12693 bytes June 23 2025 13:48:37.
reduction.py File 9512 bytes June 23 2025 13:48:37.
resource_sharer.py File 5145 bytes June 23 2025 13:48:37.
resource_tracker.py File 11077 bytes June 23 2025 13:48:37.
shared_memory.py File 18458 bytes June 23 2025 13:48:37.
sharedctypes.py File 6306 bytes June 23 2025 13:48:37.
spawn.py File 9644 bytes June 23 2025 13:48:37.
synchronize.py File 12272 bytes June 23 2025 13:48:37.
util.py File 14261 bytes June 23 2025 13:48:37.

Reading File: //opt/alt/python312/lib64//python3.12//multiprocessing/__init__.py

#
# 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
#

__all__ = [x for x in dir(context._default_context) if not x.startswith('_')]
globals().update((name, getattr(context._default_context, name)) for name in __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