mirror of
https://github.com/python/cpython.git
synced 2024-11-28 12:31:14 +08:00
GH-96179: Fix misleading example on the bisect documentation (GH-96228)
The `movies[bisect(movies, 1960, key=by_year)]` will actually return only movies **after** 1960.
This commit is contained in:
parent
09563a764e
commit
4317b25a23
@ -216,7 +216,7 @@ records in a table::
|
||||
... Movie('Aliens', 1986, 'Scott')
|
||||
... ]
|
||||
|
||||
>>> # Find the first movie released on or after 1960
|
||||
>>> # Find the first movie released after 1960
|
||||
>>> by_year = attrgetter('released')
|
||||
>>> movies.sort(key=by_year)
|
||||
>>> movies[bisect(movies, 1960, key=by_year)]
|
||||
|
Loading…
Reference in New Issue
Block a user