cpython (3.2): Closes #13283: removal of two unused variable in locale.py

http://hg.python.org/cpython/rev/a479aad0231e changeset: 73248:a479aad0231e branch: 3.2 parent: 73240:e23baae539f7 user: Jesus Cea <jcea@jcea.es> date: Mon Oct 31 16:03:34 2011 +0100 summary: 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