Implement Mark Favas's suggestion. There's a clear bug in _group():

its first return statement returns a single value while its caller
always expects it to return a tuple of two items.  Fix this by
returning (s, 0) instead.

This won't make the locale test on Irix succeed, but now it will fail
because of a bug in the platform's en_US locale rather than because of
a bug in the locale module.
This commit is contained in:
Guido van Rossum 2001-04-16 16:04:10 +00:00
parent 1fcd438956
commit 67addfe2a8
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ except ImportError:
def _group(s):
conv=localeconv()
grouping=conv['grouping']
if not grouping:return s
if not grouping:return (s, 0)
result=""
seps = 0
spaces = ""