Commit cf98f03a authored by Raymond Hettinger's avatar Raymond Hettinger

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

parent c5a1cc5c
......@@ -9,7 +9,7 @@ import numbers
import operator
import re
__all__ = ["Fraction"]
__all__ = ['Fraction', 'gcd']
Rational = numbers.Rational
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment