[Python-checkins] r61051 - python/trunk/Lib/decimal.py

mark.dickinson python-checkins at python.org
Sun Feb 24 19:12:37 CET 2008


Author: mark.dickinson
Date: Sun Feb 24 19:12:36 2008
New Revision: 61051

Modified:
   python/trunk/Lib/decimal.py
Log:
Remove duplicate 'import re' in decimal.py


Modified: python/trunk/Lib/decimal.py
==============================================================================
--- python/trunk/Lib/decimal.py	(original)
+++ python/trunk/Lib/decimal.py	Sun Feb 24 19:12:36 2008
@@ -5212,8 +5212,7 @@
 
 
 ##### crud for parsing strings #############################################
-import re
-
+#
 # Regular expression used for parsing numeric strings.  Additional
 # comments:
 #


More information about the Python-checkins mailing list