cpython (merge 3.2 -> default): MERGE: Closes #13283: removal of two unused variable in locale.py

http://hg.python.org/cpython/rev/a228890c624d changeset: 73249:a228890c624d parent: 73243:05e2bdc00c0c parent: 73248:a479aad0231e user: Jesus Cea <jcea@jcea.es> date: Mon Oct 31 16:04:12 2011 +0100 summary: MERGE: Closes #13283: removal of two unused variable in locale.py files: Lib/locale.py | 2 -- 1 files changed, 0 insertions(+), 2 deletions(-) diff --git a/Lib/locale.py b/Lib/locale.py --- a/Lib/locale.py +++ b/Lib/locale.py @@ -142,8 +142,6 @@ 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):] -- Repository URL: http://hg.python.org/cpython
participants (1)
-
jesus.cea