]> granicus.if.org Git - python/commitdiff
Add one other review comment.
authorRaymond Hettinger <python@rcn.com>
Fri, 25 Jan 2008 01:13:12 +0000 (01:13 +0000)
committerRaymond Hettinger <python@rcn.com>
Fri, 25 Jan 2008 01:13:12 +0000 (01:13 +0000)
Lib/rational.py

index 90abe62d955b23c811a7e717b9d35e3fc8c7b79c..40b91635d34266e888fa108eec3c89183f6507ec 100755 (executable)
@@ -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