Multiprocessing utils (shared locks and thread locals)
Project description
Multiprocessing utilities
multiprocess-safe threading.local()
A process (and thread) safe version of threading.local()
l = multiprocessing_utils.local() l.x = 1 def f(): try: print(l.x) except Attribute: print("x not set") f() # prints "1" threading.Thread(target=f).start() # prints "x not set" multiprocessing.Process(target=f).start() # prints "x not set"
Difference to standard threading.local()
A standard threading.local() instance created before forking (via os.fork() or multiprocessing.Process()) will be “local” as expected and the new process will have access to any data set before the fork.
Using a standard threading.local() in the example above would yield:
f() # prints "1" threading.Thread(target=f).start() # prints "x not set" multiprocessing.Process(target=f).start() # prints "1" :(
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file multiprocessing_utils-0.4.tar.gz
.
File metadata
- Download URL: multiprocessing_utils-0.4.tar.gz
- Upload date:
- Size: 6.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 43281d5e017d9b3f3e6114762c21f10c2a2b0392837c5096380e6c413ae79b6c |
|
MD5 | 688bb388d0dbb506c37d11bccca2246b |
|
BLAKE2b-256 | 7f23ee76f1f2d501411afc152208d30d1575a8e76929eca276b94f4e44600085 |
File details
Details for the file multiprocessing_utils-0.4-py2.py3-none-any.whl
.
File metadata
- Download URL: multiprocessing_utils-0.4-py2.py3-none-any.whl
- Upload date:
- Size: 10.5 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c232e0bbc6ba753ca7a0df5d49b0cc4e26454635d4f373f5133c551aec8c27ee |
|
MD5 | 7c057eb3f3378966d3a7e59868426718 |
|
BLAKE2b-256 | 705c2e3065be295ca10f39d22579fc59ba8dd258123b0d66209bb4ff7c3d4557 |