From: Jesus Cea Date: Mon, 31 Oct 2011 15:02:12 +0000 (+0100) Subject: Closes #13283: removal of two unused variable in locale.py X-Git-Tag: v2.7.3rc1~347 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e4ae5f7e0fa40b323a69fbbe70cca6aa312c55aa;p=python Closes #13283: removal of two unused variable in locale.py --- diff --git a/Lib/locale.py b/Lib/locale.py index 0c4d6527e9..ae667a898b 100644 --- a/Lib/locale.py +++ b/Lib/locale.py @@ -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):]