Starting in Python 3.4 the builtins max and min support a new keyword-only argument default that allows to specify the value to be returned in case of an empty sequence. It appears that future doesn't provide replacement builtins with that semantics. Shouldn't it do so?
Starting in Python 3.4 the builtins
maxandminsupport a new keyword-only argumentdefaultthat allows to specify the value to be returned in case of an empty sequence. It appears thatfuturedoesn't provide replacement builtins with that semantics. Shouldn't it do so?