This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author serhiy.storchaka
Recipients mark.dickinson, rhettinger, serhiy.storchaka, skrah, steven.daprano, tim.peters
Date 2018-07-26.06:20:28
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1532586028.76.0.56676864532.issue33089@psf.upfronthosting.co.za>
In-reply-to
Content
I think we should guarantee some properties:

1. The result of hypot(x, y, z, ...) shouldn't depend on the order of arguments.

2. It should be monotonic for all arguments: hypot(..., x, ...) <= hypot(..., y, ...) for abs(x) < abs(y).

3. hypot(..., inf, ...) = inf

4. hypot(..., nan, ...) = nan (if no infinities)

5. hypot(x, x, x, x) == 2*abs(x)
History
Date User Action Args
2018-07-26 06:20:28serhiy.storchakasetrecipients: + serhiy.storchaka, tim.peters, rhettinger, mark.dickinson, steven.daprano, skrah
2018-07-26 06:20:28serhiy.storchakasetmessageid: <1532586028.76.0.56676864532.issue33089@psf.upfronthosting.co.za>
2018-07-26 06:20:28serhiy.storchakalinkissue33089 messages
2018-07-26 06:20:28serhiy.storchakacreate