From 63c77b61751c2d15754b6381d085eb5ca2e26501 Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Sun, 27 Jan 2008 10:13:57 +0000 Subject: [PATCH] Docstring nit --- Lib/rational.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/rational.py b/Lib/rational.py index 93b0c5b6217..8ee38ba0a5c 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. """