diff options
author | Jesus Cea <jcea@jcea.es> | 2011-10-31 15:04:12 (GMT) |
---|---|---|
committer | Jesus Cea <jcea@jcea.es> | 2011-10-31 15:04:12 (GMT) |
commit | 1dca75f61134c03909139973cc53366977150b3a (patch) | |
tree | 9d2e9e1990bc3f8d726706e68a9baff7c8706f08 /Lib | |
parent | f4afa43fd40130efba32f9c7ba07f895fffe7bad (diff) | |
parent | 5032292f9e4aa87f61532fbefeff9e300bf120ac (diff) | |
download | cpython-1dca75f61134c03909139973cc53366977150b3a.zip cpython-1dca75f61134c03909139973cc53366977150b3a.tar.gz cpython-1dca75f61134c03909139973cc53366977150b3a.tar.bz2 |
MERGE: Closes #13283: removal of two unused variable in locale.py
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/locale.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/locale.py b/Lib/locale.py index 0f6fe53..3dc4caf 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):] |