]> granicus.if.org Git - python/commitdiff
Fix PR#31 -- zfill() mishandles empty string.
authorGuido van Rossum <guido@python.org>
Mon, 11 Oct 1999 22:15:41 +0000 (22:15 +0000)
committerGuido van Rossum <guido@python.org>
Mon, 11 Oct 1999 22:15:41 +0000 (22:15 +0000)
Lib/string.py

index 92158ee9d3776d2947d0205a42691069b37ef47b..e449c20765693e051f6bacd30cc49317fbcf44be 100644 (file)
@@ -475,7 +475,7 @@ def zfill(x, width):
        n = len(s)
        if n >= width: return s
        sign = ''
-       if s[0] in ('-', '+'):
+       if s[:1] in ('-', '+'):
                sign, s = s[0], s[1:]
        return sign + '0'*(width-n) + s