From: Raymond Hettinger Date: Fri, 25 Jan 2008 01:13:12 +0000 (+0000) Subject: Add one other review comment. X-Git-Tag: v2.6a1~416 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7ea82253ea6ed6d8930630f5b786489ff8817dcb;p=python Add one other review comment. --- diff --git a/Lib/rational.py b/Lib/rational.py index 90abe62d95..40b91635d3 100755 --- a/Lib/rational.py +++ b/Lib/rational.py @@ -14,7 +14,7 @@ __all__ = ["Rational"] RationalAbc = numbers.Rational -def _gcd(a, b): +def _gcd(a, b): # XXX This is a useful function. Consider making it public. """Calculate the Greatest Common Divisor. Unless b==0, the result will have the same sign as b (so that when