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:
prego 2022-08-24 17:47:13 +02:00 committed by GitHub
parent 09563a764e
commit 4317b25a23
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -216,7 +216,7 @@ records in a table::
... Movie('Aliens', 1986, 'Scott') ... Movie('Aliens', 1986, 'Scott')
... ] ... ]
>>> # Find the first movie released on or after 1960 >>> # Find the first movie released after 1960
>>> by_year = attrgetter('released') >>> by_year = attrgetter('released')
>>> movies.sort(key=by_year) >>> movies.sort(key=by_year)
>>> movies[bisect(movies, 1960, key=by_year)] >>> movies[bisect(movies, 1960, key=by_year)]

View file

@ -1419,6 +1419,7 @@ John Popplewell
Matheus Vieira Portela Matheus Vieira Portela
Davin Potts Davin Potts
Guillaume Pratte Guillaume Pratte
Pedro Pregueiro
Florian Preinstorfer Florian Preinstorfer
Alex Prengère Alex Prengère
Amrit Prem Amrit Prem