Skip to content

Commit 430a329

Browse files
committed
Merge remote-tracking branch 'upstream/main' into fix-mimetypes-case-sensitive-add-type
2 parents 046dc95 + 16ede81 commit 430a329

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Doc/library/bisect.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ example uses :py:func:`~bisect.bisect` to look up a letter grade for an exam sco
200200
based on a set of ordered numeric breakpoints: 90 and up is an 'A', 80 to 89 is
201201
a 'B', and so on::
202202

203-
>>> def grade(score)
203+
>>> def grade(score):
204204
... i = bisect([60, 70, 80, 90], score)
205205
... return "FDCBA"[i]
206206
...

0 commit comments

Comments
 (0)