The __all__ variable forgot to expose the gcd() function.

This commit is contained in:
Raymond Hettinger 2008-05-08 04:36:12 +00:00
parent c5a1cc5c37
commit cf98f03a62

View file

@ -9,7 +9,7 @@ import numbers
import operator
import re
__all__ = ["Fraction"]
__all__ = ['Fraction', 'gcd']
Rational = numbers.Rational