]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Closes #13283: removal of two unused variable in locale.py
authorJesus Cea <jcea@jcea.es>
Mon, 31 Oct 2011 15:03:34 +0000 (16:03 +0100)
committerJesus Cea <jcea@jcea.es>
Mon, 31 Oct 2011 15:03:34 +0000 (16:03 +0100)
Lib/locale.py

index 0f6fe534839acac48ddbacc47b3953cebe4a310e..3dc4cafcb152030f83c6d089f18128d36de1fb1c 100644 (file)
@@ -142,8 +142,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):]