]> granicus.if.org Git - python/commitdiff
Closes #13283: removal of two unused variable in locale.py
authorJesus Cea <jcea@jcea.es>
Mon, 31 Oct 2011 15:02:12 +0000 (16:02 +0100)
committerJesus Cea <jcea@jcea.es>
Mon, 31 Oct 2011 15:02:12 +0000 (16:02 +0100)
Lib/locale.py

index 0c4d6527e9096bcab5d4de92384d1c79ca2f113a..ae667a898b80356d8b5f10eca76a2d0f1055b5c7 100644 (file)
@@ -135,8 +135,6 @@ def _group(s, monetary=False):
     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):]