Dennis Sweeney <[email protected]> added the comment:
This is a good idea for languages where integers are bounded, but in Python, integers can be as large as you want, so there's no reason to worry about overflow: >>> lo = 1 * 10**100 >>> hi = 2 * 10**100 >>> (lo + hi) // 2 15000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 ---------- nosy: +Dennis Sweeney _______________________________________ Python tracker <[email protected]> <https://bugs.python.org/issue44755> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
