gh-122681: remove m_atan2()/c_atan2() helpers (#122715)

This commit is contained in:
Sergey B Kirpichev 2024-08-17 11:18:16 +03:00 committed by GitHub
parent e6d5ff55d0
commit 19be0ee931
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 3 additions and 42 deletions

View file

@ -1066,7 +1066,7 @@ FUNC1(atan, atan, 0,
"atan($module, x, /)\n--\n\n"
"Return the arc tangent (measured in radians) of x.\n\n"
"The result is between -pi/2 and pi/2.")
FUNC2(atan2, m_atan2,
FUNC2(atan2, atan2,
"atan2($module, y, x, /)\n--\n\n"
"Return the arc tangent (measured in radians) of y/x.\n\n"
"Unlike atan(y/x), the signs of both x and y are considered.")