[Python-checkins] cpython (2.7): Closes #13283: removal of two unused variable in locale.py

jesus.cea python-checkins at python.org
Mon Oct 31 16:05:46 CET 2011


http://hg.python.org/cpython/rev/0694ebb5db99
changeset:   73247:0694ebb5db99
branch:      2.7
user:        Jesus Cea <jcea at jcea.es>
date:        Mon Oct 31 16:02:12 2011 +0100
summary:
  Closes #13283: removal of two unused variable in locale.py

files:
  Lib/locale.py |  2 --
  1 files changed, 0 insertions(+), 2 deletions(-)


diff --git a/Lib/locale.py b/Lib/locale.py
--- a/Lib/locale.py
+++ b/Lib/locale.py
@@ -135,8 +135,6 @@
     grouping = conv[monetary and 'mon_grouping' or 'grouping']
     if not grouping:
         return (s, 0)
-    result = ""
-    seps = 0
     if s[-1] == ' ':
         stripped = s.rstrip()
         right_spaces = s[len(stripped):]

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list