summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2008-01-27 10:13:57 (GMT)
committerRaymond Hettinger <python@rcn.com>2008-01-27 10:13:57 (GMT)
commit63c77b61751c2d15754b6381d085eb5ca2e26501 (patch)
tree1678a3cedf61f22b736b5b8b0da378fb9c4f54aa
parentcfb41c4985e8fe5f2044c703160e5195044235df (diff)
downloadcpython-63c77b61751c2d15754b6381d085eb5ca2e26501.zip
cpython-63c77b61751c2d15754b6381d085eb5ca2e26501.tar.gz
cpython-63c77b61751c2d15754b6381d085eb5ca2e26501.tar.bz2
Docstring nit
-rwxr-xr-xLib/rational.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/rational.py b/Lib/rational.py
index 93b0c5b..8ee38ba 100755
--- a/Lib/rational.py
+++ b/Lib/rational.py
@@ -103,7 +103,7 @@ class Rational(RationalAbc):
def __new__(cls, numerator=0, denominator=1):
"""Constructs a Rational.
- Takes a string like '3/2' or '3.2', another Rational, or a
+ Takes a string like '3/2' or '1.5', another Rational, or a
numerator/denominator pair.
"""