mirror of
https://github.com/python/cpython.git
synced 2025-07-29 06:05:00 +00:00
The __all__ variable forgot to expose the gcd() function.
This commit is contained in:
parent
c5a1cc5c37
commit
cf98f03a62
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@ import numbers
|
|||
import operator
|
||||
import re
|
||||
|
||||
__all__ = ["Fraction"]
|
||||
__all__ = ['Fraction', 'gcd']
|
||||
|
||||
Rational = numbers.Rational
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue