Browse Source

Update Docs

pull/109/head
susi132002 3 years ago
committed by GitHub
parent
commit
ae2b88c401
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions
  1. 4
      README.md

4
README.md

@ -2046,7 +2046,7 @@ from collections import deque
Threading Threading
--------- ---------
* **CPython interpreter can only run a single thread at a time.**
* **CPython interpreter can only run a single thread at a particular time.**
* **That is why using multiple threads won't result in a faster execution, unless at least one of the threads contains an I/O operation.** * **That is why using multiple threads won't result in a faster execution, unless at least one of the threads contains an I/O operation.**
```python ```python
from threading import Thread, RLock, Semaphore, Event, Barrier from threading import Thread, RLock, Semaphore, Event, Barrier
@ -2114,7 +2114,7 @@ from queue import Queue
Operator Operator
-------- --------
**Module of functions that provide the functionality of operators.**
**Module of functions that provide functionality of operators.**
```python ```python
from operator import add, sub, mul, truediv, floordiv, mod, pow, neg, abs from operator import add, sub, mul, truediv, floordiv, mod, pow, neg, abs
from operator import eq, ne, lt, le, gt, ge from operator import eq, ne, lt, le, gt, ge

Loading…
Cancel
Save