From 5032292f9e4aa87f61532fbefeff9e300bf120ac Mon Sep 17 00:00:00 2001 From: Jesus Cea Date: Mon, 31 Oct 2011 16:03:34 +0100 Subject: [PATCH] Closes #13283: removal of two unused variable in locale.py --- Lib/locale.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/Lib/locale.py b/Lib/locale.py index 0f6fe534839..3dc4cafcb15 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):]