From: Jesus Cea Date: Mon, 31 Oct 2011 15:03:34 +0000 (+0100) Subject: Closes #13283: removal of two unused variable in locale.py X-Git-Tag: v3.2.3rc1~447 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5032292f9e4aa87f61532fbefeff9e300bf120ac;p=thirdparty%2FPython%2Fcpython.git Closes #13283: removal of two unused variable in locale.py --- diff --git a/Lib/locale.py b/Lib/locale.py index 0f6fe534839a..3dc4cafcb152 100644 --- a/Lib/locale.py +++ b/Lib/locale.py @@ -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):]