__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
#
# 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__']
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| __pycache__ | Folder | 0755 |
|
|
| dummy | Folder | 0755 |
|
|
| __init__.py | File | 916 B | 0644 |
|
| connection.py | File | 40.41 KB | 0644 |
|
| context.py | File | 11.4 KB | 0644 |
|
| forkserver.py | File | 11.85 KB | 0644 |
|
| heap.py | File | 11.35 KB | 0644 |
|
| managers.py | File | 46.5 KB | 0644 |
|
| pool.py | File | 31.99 KB | 0644 |
|
| popen_fork.py | File | 2.32 KB | 0644 |
|
| popen_forkserver.py | File | 2.18 KB | 0644 |
|
| popen_spawn_posix.py | File | 1.98 KB | 0644 |
|
| popen_spawn_win32.py | File | 4.41 KB | 0644 |
|
| process.py | File | 11.85 KB | 0644 |
|
| queues.py | File | 12.4 KB | 0644 |
|
| reduction.py | File | 9.29 KB | 0644 |
|
| resource_sharer.py | File | 5.02 KB | 0644 |
|
| resource_tracker.py | File | 10.09 KB | 0644 |
|
| shared_memory.py | File | 18.03 KB | 0644 |
|
| sharedctypes.py | File | 6.16 KB | 0644 |
|
| spawn.py | File | 9.42 KB | 0644 |
|
| synchronize.py | File | 12 KB | 0644 |
|
| util.py | File | 13.93 KB | 0644 |
|