diff options
author | Raymond Hettinger <python@rcn.com> | 2008-01-25 01:13:12 +0000 |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2008-01-25 01:13:12 +0000 |
commit | 7ea82253ea6ed6d8930630f5b786489ff8817dcb (patch) | |
tree | cf1e2b7a53b7205bea8a4ddf3c8b5358c28b507b | |
parent | 921cb5d3a3e823c6c225681d8e99f7baa8920f3e (diff) | |
download | cpython-git-7ea82253ea6ed6d8930630f5b786489ff8817dcb.tar.gz |
Add one other review comment.
-rwxr-xr-x | Lib/rational.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 |