Transcrypt icon indicating copy to clipboard operation
Transcrypt copied to clipboard

math.copysign() is not a function (missing?)

Open chopin opened this issue 2 years ago • 0 comments

Is math.copysign() missing in Transcrypt?

in Python3.9.18:

>>> import math
>>> math.copysign(1, 434)
1.0
>>> math.copysign(1, -434)
-1.0

Transcrypted: Uncaught TypeError: math.copysign is not a function

chopin avatar Jan 02 '24 12:01 chopin