diff options
Diffstat (limited to 'Lib/rational.py')
-rwxr-xr-x | Lib/rational.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/rational.py b/Lib/rational.py index e2fed23..6002964 100755 --- a/Lib/rational.py +++ b/Lib/rational.py @@ -406,8 +406,6 @@ class Rational(RationalAbc): else: return a.numerator // a.denominator - __int__ = __trunc__ - def __floor__(a): """Will be math.floor(a) in 3.0.""" return a.numerator // a.denominator |