Skip to content

Commit ab5ea4a

Browse files
committed
-
1 parent 7f9896e commit ab5ea4a

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

source_py3/python_toolbox/binary_search/binary_search_profile.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ def __init__(self, sequence, value, function=misc_tools.identity_function,
3939
objects in `sequence` being compared, their outputs from `function`
4040
will be compared. If you do pass in a function, it's assumed that it's
4141
strictly rising.
42-
4342
4443
In the `both` argument you may put binary search results (with the BOTH
4544
rounding option.) This will prevent the constructor from performing the

source_py3/python_toolbox/math_tools/misc.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,12 @@ def is_integer(x):
157157

158158

159159
class RoundMode(python_toolbox.cute_enum.CuteEnum):
160+
'''
161+
A mode that determines how `cute_round` will round.
162+
163+
See documentation of `cute_round` for more info about each of the different
164+
round modes.
165+
'''
160166
CLOSEST_OR_DOWN = 0
161167
CLOSEST_OR_UP = 1
162168
ALWAYS_DOWN = 2

0 commit comments

Comments
 (0)