Skip to content

Commit 878c0af

Browse files
authored
Update README.md
1 parent 0f66251 commit 878c0af

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,10 @@ In the [`queue`](https://docs.python.org/3/library/queue.html) module, there are
120120

121121
:warning: Note these queue collections are thread-safe, although _it isn't explicitly clear from their type name_, making it **dangerously confusing** for people mistakenly thinking that thread-safety applies also to e.g. the [`deque`](https://docs.python.org/3/library/collections.html#collections.deque), which is absolutely **not** thread-safe.
122122

123-
Additionally, there are [other queue classes in the `multiprocessing` module](https://docs.python.org/3/library/multiprocessing.html#pipes-and-queues), which makes it even more confusing due to the redundancy with the above queue classes.
123+
Additionally, there are [other queue classes in the `multiprocessing` module](https://docs.python.org/3/library/multiprocessing.html#pipes-and-queues), which makes it even more confusing due to the redundancy with the above queue classes. This defines:
124+
- `JoinableQueue`
125+
- `Queue` (again)
126+
- `SimpleQueue` (again)
124127

125128

126129
## License

0 commit comments

Comments
 (0)