[issue1880] Generalize math.hypot function

2008-01-21 Thread Georg Brandl
Georg Brandl added the comment: IOW, this is rejected. -- nosy: +georg.brandl resolution: -> rejected status: open -> closed __ Tracker <[EMAIL PROTECTED]> __

[issue1880] Generalize math.hypot function

2008-01-20 Thread Mark Dickinson
Mark Dickinson added the comment: I'm not sure either that such a generalization would belong in math (which right now does little more than expose some basic functions from the C library) or that it should be called hypot. It seems to me that this would belong with other vector-type math st

[issue1880] Generalize math.hypot function

2008-01-20 Thread David W. Lambert
New submission from David W. Lambert: Please generalize math.hypot. While I don't have a survey of python codes, it seems to me unlikely for this change to break existing programs. import math def hypot(*args): ''' Return the Euclidean vector length. >>> from math import