Paul Sokolovsky
3e3c6fcaa6
multiprocessing: Fix from_bytes/to_bytes calls.
...
As they're used for internal communication, just use "little" for
endianness.
2017-09-03 11:09:05 +03:00
Delio Brignoli
6c5f1c62d8
multiprocessing: Connection.recv() must raise EOFError on EOF.
...
Per CPython docs.
2015-06-20 19:26:07 +03:00
Paul Sokolovsky
cd2774bb8e
multiprocessing: Add AsyncResult.ready() with real async implementation.
2014-05-01 10:30:01 +03:00
Paul Sokolovsky
fddef71832
multiprocessing: Add trivial AsyncResult, not much async at all.
2014-05-01 10:13:03 +03:00
Paul Sokolovsky
b16a92a365
multiprocessing: Add dummy Pool implementation which doesn't really uses pool.
2014-05-01 09:57:29 +03:00
Paul Sokolovsky
7fbc074a13
multiprocessing: Implement Pipe-alike.
...
Unfortunately, any Pipe used for parent/child child communication
needs to be registered with child Process. To get around that, would
need to keep global registry of Pipes, and that's bloat.
2014-05-01 09:41:09 +03:00
Paul Sokolovsky
fec581f862
multiprocessing: Add, with bare Process class implementation.
2014-05-01 02:40:47 +03:00