diff options
author | Raymond Hettinger <python@rcn.com> | 2008-05-08 16:03:04 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2008-05-08 16:03:04 (GMT) |
commit | e580f5c55af033ee3d1e6d7b841fe3d144a91ae5 (patch) | |
tree | e597fef6cf7187e458c72ab65dd5762743851097 /Lib/fractions.py | |
parent | 10956eab9ee96468c52f93d90b98e25619841969 (diff) | |
download | cpython-e580f5c55af033ee3d1e6d7b841fe3d144a91ae5.zip cpython-e580f5c55af033ee3d1e6d7b841fe3d144a91ae5.tar.gz cpython-e580f5c55af033ee3d1e6d7b841fe3d144a91ae5.tar.bz2 |
Forward port r62849.
Diffstat (limited to 'Lib/fractions.py')
-rwxr-xr-x | Lib/fractions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/fractions.py b/Lib/fractions.py index f368576..670c8eb 100755 --- a/Lib/fractions.py +++ b/Lib/fractions.py @@ -8,7 +8,7 @@ import numbers import operator import re -__all__ = ["Fraction"] +__all__ = ['Fraction', 'gcd'] |