summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2008-05-08 16:03:04 (GMT)
committerRaymond Hettinger <python@rcn.com>2008-05-08 16:03:04 (GMT)
commite580f5c55af033ee3d1e6d7b841fe3d144a91ae5 (patch)
treee597fef6cf7187e458c72ab65dd5762743851097 /Lib
parent10956eab9ee96468c52f93d90b98e25619841969 (diff)
downloadcpython-e580f5c55af033ee3d1e6d7b841fe3d144a91ae5.zip
cpython-e580f5c55af033ee3d1e6d7b841fe3d144a91ae5.tar.gz
cpython-e580f5c55af033ee3d1e6d7b841fe3d144a91ae5.tar.bz2
Forward port r62849.
Diffstat (limited to 'Lib')
-rwxr-xr-xLib/fractions.py2
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']