(original) (raw)
changeset: 73247:0694ebb5db99 branch: 2.7 user: Jesus Cea jcea@jcea.es date: Mon Oct 31 16:02:12 2011 +0100 files: Lib/locale.py description: Closes #13283: removal of two unused variable in locale.py diff -r a6712411c37d -r 0694ebb5db99 Lib/locale.py --- a/Lib/locale.py Mon Oct 31 12:40:25 2011 +0100 +++ b/Lib/locale.py Mon Oct 31 16:02:12 2011 +0100 @@ -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):] /jcea@jcea.es