Files
typeshed/stdlib/3
Martijn Pieters c53bc5a7ab Add missing elements for multiprocessing.dummy (#3471)
`multiprocessing.dummy` exports names that were not yet listed in the typeshed stub:

```python
>>> from multiprocessing import dummy as mpdummy
>>> imported_objects = (
...     (name, obj) for name, obj in vars(mpdummy).items()
...     if name in mpdummy.__all__ and not obj.__module__.startswith("multiprocessing.dummy")
... )
>>> print(*(f"{name}: {obj.__module__}" for name, obj in sorted(imported_objects)), sep="\n")
Barrier: threading
BoundedSemaphore: threading
Condition: threading
Event: threading
JoinableQueue: queue
Lock: _thread
Queue: queue
RLock: threading
Semaphore: threading
current_process: threading
```

Of these, only `JoinableQueue` was listed.
2019-11-20 10:40:12 +00:00
..
2019-11-13 20:09:30 +01:00
2019-10-29 19:52:05 -07:00
2019-07-27 10:58:21 +02:00
2019-11-20 10:29:05 +00:00
2019-07-27 10:58:21 +02:00
2017-04-30 14:16:30 -07:00
2019-08-05 08:08:57 -07:00
2018-08-18 19:25:48 -07:00
2019-07-27 10:58:21 +02:00
2017-10-08 21:12:19 -07:00
2019-07-27 10:58:21 +02:00