[Python-3000-checkins] r62872 - python/branches/py3k/Lib/fractions.py

raymond.hettinger python-3000-checkins at python.org
Thu May 8 18:03:05 CEST 2008


Author: raymond.hettinger
Date: Thu May  8 18:03:04 2008
New Revision: 62872

Log:
Forward port r62849.

Modified:
   python/branches/py3k/Lib/fractions.py

Modified: python/branches/py3k/Lib/fractions.py
==============================================================================
--- python/branches/py3k/Lib/fractions.py	(original)
+++ python/branches/py3k/Lib/fractions.py	Thu May  8 18:03:04 2008
@@ -8,7 +8,7 @@
 import operator
 import re
 
-__all__ = ["Fraction"]
+__all__ = ['Fraction', 'gcd']
 
 
 


More information about the Python-3000-checkins mailing list