Skip to content

Commit 3e2f2d9

Browse files
committed
Fix quotes
1 parent 4648f50 commit 3e2f2d9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Doc/library/functools.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -587,10 +587,10 @@ The :mod:`functools` module defines the following functions:
587587

588588
# When the work for a node is done, workers put the node in
589589
# 'finalized_tasks_queue' so we can get more nodes to work on.
590-
# The definition of 'is_active()` guarantees that, at this point, at
590+
# The definition of 'is_active()' guarantees that, at this point, at
591591
# least one node has been placed on 'task_queue' that hasn't yet
592-
# been passed to `done()`, so this blocking `get()` must (eventually)
593-
# succeed. After calling `done()`, we loop back to call `get_ready()`
592+
# been passed to 'done()', so this blocking 'get()' must (eventually)
593+
# succeed. After calling 'done()', we loop back to call 'get_ready()'
594594
# again, so put newly freed nodes on 'task_queue' as soon as
595595
# logically possible.
596596
node = finalized_tasks_queue.get()

Doc/myfile.bz2

331 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)