summaryrefslogtreecommitdiff
path: root/Lib/heapq.py
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2014-03-26 02:00:54 -0700
committerRaymond Hettinger <python@rcn.com>2014-03-26 02:00:54 -0700
commit8f2420c94b350cf37b0ac06bda5539f754c1b469 (patch)
tree41a9441a4b315dbeaa4401d4e0d979573002a594 /Lib/heapq.py
parentb0e69511936997810a1591a1e894910eaa44e3e3 (diff)
downloadcpython-git-8f2420c94b350cf37b0ac06bda5539f754c1b469.tar.gz
Broaden the early-out test for nsmallest and nlargest
Diffstat (limited to 'Lib/heapq.py')
-rw-r--r--Lib/heapq.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/heapq.py b/Lib/heapq.py
index d615239b94..d52cd715e1 100644
--- a/Lib/heapq.py
+++ b/Lib/heapq.py
@@ -197,7 +197,7 @@ def nlargest(n, iterable):
Equivalent to: sorted(iterable, reverse=True)[:n]
"""
- if n < 0:
+ if n <= 0:
return []
it = iter(iterable)
result = list(islice(it, n))
@@ -215,7 +215,7 @@ def nsmallest(n, iterable):
Equivalent to: sorted(iterable)[:n]
"""
- if n < 0:
+ if n <= 0:
return []
it = iter(iterable)
result = list(islice(it, n))