summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2010-01-02 14:29:52 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2010-01-02 14:29:52 (GMT)
commit5a485c188e56b36b6cfaa2ae942c1ee40b877315 (patch)
tree5cbd1b1544c7bf96b4862815161a0bca49018a7f /Doc
parent36f4214255ec8a2b5e0389a4e18cfcdec5c987ed (diff)
downloadcpython-5a485c188e56b36b6cfaa2ae942c1ee40b877315.zip
cpython-5a485c188e56b36b6cfaa2ae942c1ee40b877315.tar.gz
cpython-5a485c188e56b36b6cfaa2ae942c1ee40b877315.tar.bz2
Clarify that the rect, phase and polar functions work with radians.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/cmath.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/cmath.rst b/Doc/library/cmath.rst
index 4797bea..5cbb426 100644
--- a/Doc/library/cmath.rst
+++ b/Doc/library/cmath.rst
@@ -36,8 +36,8 @@ words::
number. In polar coordinates, a complex number *z* is defined by the
modulus *r* and the phase angle *phi*. The modulus *r* is the distance
from *z* to the origin, while the phase *phi* is the counterclockwise
-angle from the positive x-axis to the line segment that joins the
-origin to *z*.
+angle, measured in radians, from the positive x-axis to the line
+segment that joins the origin to *z*.
The following functions can be used to convert from the native
rectangular coordinates to polar coordinates and back.