In time.py, function time_cases() has parameter start_size but time_functions() has start because it can be the start value (for time_functions_int) rather than the start size. Options:
keep it as is
change start_size to start
In both cases, either the code or the docs, examples and templates must be checked and updated (e.g. the writing guide uses start_size for both functions).
In
time.py
, functiontime_cases()
has parameterstart_size
buttime_functions()
hasstart
because it can be the start value (fortime_functions_int
) rather than the start size. Options:start_size
tostart
In both cases, either the code or the docs, examples and templates must be checked and updated (e.g. the writing guide uses
start_size
for both functions).