(original) (raw)
changeset: 73249:a228890c624d parent: 73243:05e2bdc00c0c parent: 73248:a479aad0231e user: Jesus Cea jcea@jcea.es date: Mon Oct 31 16:04:12 2011 +0100 description: MERGE: Closes #13283: removal of two unused variable in locale.py diff -r 05e2bdc00c0c -r a228890c624d Lib/locale.py --- a/Lib/locale.py Mon Oct 31 11:48:09 2011 +0100 +++ b/Lib/locale.py Mon Oct 31 16:04:12 2011 +0100 @@ -142,8 +142,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):] /jcea@jcea.es