Merged revisions 70457 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/trunk

........
  r70457 | antoine.pitrou | 2009-03-18 18:10:04 +0100 (mer., 18 mars 2009) | 3 lines

  Attempt to fix Solaris buildbot failure on test_locale
........
This commit is contained in:
Antoine Pitrou 2009-03-18 17:11:06 +00:00
parent 5326110d0e
commit 1637a68ab5
1 changed files with 1 additions and 1 deletions

View File

@ -151,7 +151,7 @@ def _group(s, monetary=False):
groups.reverse()
return (
left_spaces + thousands_sep.join(groups) + right_spaces,
len(groups) - 1
len(thousands_sep) * (len(groups) - 1)
)
# Strip a given amount of excess padding from the given string