From: Raymond Hettinger Date: Thu, 8 May 2008 16:03:04 +0000 (+0000) Subject: Forward port r62849. X-Git-Tag: v3.0b1~450 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e580f5c55af033ee3d1e6d7b841fe3d144a91ae5;p=thirdparty%2FPython%2Fcpython.git Forward port r62849. --- diff --git a/Lib/fractions.py b/Lib/fractions.py index f368576e63d0..670c8eb4a0c9 100755 --- a/Lib/fractions.py +++ b/Lib/fractions.py @@ -8,7 +8,7 @@ import numbers import operator import re -__all__ = ["Fraction"] +__all__ = ['Fraction', 'gcd']