@@ -19,9 +19,9 @@ linear searches or frequent resorting.
19
19
The module is called :mod: `bisect ` because it uses a basic bisection
20
20
algorithm to do its work. Unlike other bisection tools that search for a
21
21
specific value, the functions in this module are designed to locate an
22
- insertion point. Accordingly, the functions never call an :meth: `__eq__ `
22
+ insertion point. Accordingly, the functions never call an :meth: `~object. __eq__ `
23
23
method to determine whether a value has been found. Instead, the
24
- functions only call the :meth: `__lt__ ` method and will return an insertion
24
+ functions only call the :meth: `~object. __lt__ ` method and will return an insertion
25
25
point between values in an array.
26
26
27
27
.. _bisect functions :
@@ -73,7 +73,7 @@ The following functions are provided:
73
73
Insert *x * in *a * in sorted order.
74
74
75
75
This function first runs :py:func: `~bisect.bisect_left ` to locate an insertion point.
76
- Next, it runs the :meth: `insert ` method on *a * to insert *x * at the
76
+ Next, it runs the :meth: `! insert ` method on *a * to insert *x * at the
77
77
appropriate position to maintain sort order.
78
78
79
79
To support inserting records in a table, the *key * function (if any) is
@@ -93,7 +93,7 @@ The following functions are provided:
93
93
entries of *x *.
94
94
95
95
This function first runs :py:func: `~bisect.bisect_right ` to locate an insertion point.
96
- Next, it runs the :meth: `insert ` method on *a * to insert *x * at the
96
+ Next, it runs the :meth: `! insert ` method on *a * to insert *x * at the
97
97
appropriate position to maintain sort order.
98
98
99
99
To support inserting records in a table, the *key * function (if any) is
0 commit comments