Remove trailing 'L's from numerator and denominator in the
repr() of a Fraction instance.
diff --git a/Lib/fractions.py b/Lib/fractions.py
index f06e4d4..3dc8184 100755
--- a/Lib/fractions.py
+++ b/Lib/fractions.py
@@ -203,7 +203,7 @@
 
     def __repr__(self):
         """repr(self)"""
-        return ('Fraction(%r, %r)' % (self._numerator, self._denominator))
+        return ('Fraction(%s, %s)' % (self._numerator, self._denominator))
 
     def __str__(self):
         """str(self)"""