Add one other review comment.

This commit is contained in:
Raymond Hettinger 2008-01-25 01:13:12 +00:00
parent 921cb5d3a3
commit 7ea82253ea
1 changed files with 1 additions and 1 deletions

View File

@ -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