diff options
author | Raymond Hettinger <python@rcn.com> | 2004-09-06 07:04:09 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2004-09-06 07:04:09 (GMT) |
commit | 8158e849305d0e0ab3e19cdc93a86bb7d5fc0651 (patch) | |
tree | bf2e3439c231960aef92109f2c4f032db1623375 /Modules | |
parent | 7d3755d2c0d6d586308666b1dddf185f0169c320 (diff) | |
download | cpython-8158e849305d0e0ab3e19cdc93a86bb7d5fc0651.zip cpython-8158e849305d0e0ab3e19cdc93a86bb7d5fc0651.tar.gz cpython-8158e849305d0e0ab3e19cdc93a86bb7d5fc0651.tar.bz2 |
Fix erroneous docstring comment.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/_heapqmodule.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Modules/_heapqmodule.c b/Modules/_heapqmodule.c index 13e6a3d..192e843 100644 --- a/Modules/_heapqmodule.c +++ b/Modules/_heapqmodule.c @@ -186,8 +186,9 @@ PyDoc_STRVAR(heapreplace_doc, This is more efficient than heappop() followed by heappush(), and can be\n\ more appropriate when using a fixed-size heap. Note that the value\n\ returned may be larger than item! That constrains reasonable uses of\n\ -this routine unless written as part of a larger expression:\n\n\ - result = item <= heap[0] and item or heapreplace(heap, item)\n"); +this routine unless written as part of a conditional replacement:\n\n\ + if item > heap[0]:\n\ + item = heapreplace(heap, item)\n"); static PyObject * heapify(PyObject *self, PyObject *heap) |