Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Doc/library/concurrent.interpreters.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ Actual concurrency is available separately through
.. seealso::

:class:`~concurrent.futures.InterpreterPoolExecutor`
combines threads with interpreters in a familiar interface.
Combines threads with interpreters in a familiar interface.

.. XXX Add references to the upcoming HOWTO docs in the seealso block.
.. XXX Add references to the upcoming HOWTO docs in the seealso block.
:ref:`isolating-extensions-howto`
how to update an extension module to support multiple interpreters
How to update an extension module to support multiple interpreters.

:pep:`554`

Expand Down
10 changes: 5 additions & 5 deletions Doc/library/heapq.rst
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,11 @@ functions, respectively.
The following functions are provided for min-heaps:


.. function:: heapify(x)

Transform list *x* into a min-heap, in-place, in linear time.


.. function:: heappush(heap, item)

Push the value *item* onto the *heap*, maintaining the min-heap invariant.
Expand All @@ -77,11 +82,6 @@ The following functions are provided for min-heaps:
followed by a separate call to :func:`heappop`.


.. function:: heapify(x)

Transform list *x* into a min-heap, in-place, in linear time.


.. function:: heapreplace(heap, item)

Pop and return the smallest item from the *heap*, and also push the new *item*.
Expand Down
Loading