summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorJesus Cea <jcea@jcea.es>2011-10-31 15:02:12 (GMT)
committerJesus Cea <jcea@jcea.es>2011-10-31 15:02:12 (GMT)
commite4ae5f7e0fa40b323a69fbbe70cca6aa312c55aa (patch)
treeccc34c835f6f9e76de2f789ece5b7b61e2060df4 /Lib
parent42f06d225d7d073ae99598e25ead5b5faf49f10e (diff)
downloadcpython-e4ae5f7e0fa40b323a69fbbe70cca6aa312c55aa.zip
cpython-e4ae5f7e0fa40b323a69fbbe70cca6aa312c55aa.tar.gz
cpython-e4ae5f7e0fa40b323a69fbbe70cca6aa312c55aa.tar.bz2
Closes #13283: removal of two unused variable in locale.py
Diffstat (limited to 'Lib')
-rw-r--r--Lib/locale.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/locale.py b/Lib/locale.py
index 0c4d652..ae667a8 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):]