diff options
author | Collin Winter <collinw@gmail.com> | 2007-08-29 23:37:10 (GMT) |
---|---|---|
committer | Collin Winter <collinw@gmail.com> | 2007-08-29 23:37:10 (GMT) |
commit | e0281cab810c30a23cf2490704e0f85aa4751e83 (patch) | |
tree | d9378944bb27df138ee167d4e674c12780f91ab2 /Lib | |
parent | 98e0d4c61cdf600e79b0856a50fd721c8091f3ea (diff) | |
download | cpython-e0281cab810c30a23cf2490704e0f85aa4751e83.zip cpython-e0281cab810c30a23cf2490704e0f85aa4751e83.tar.gz cpython-e0281cab810c30a23cf2490704e0f85aa4751e83.tar.bz2 |
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/string.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/string.py b/Lib/string.py index de364de..a061558 100644 --- a/Lib/string.py +++ b/Lib/string.py @@ -232,6 +232,7 @@ class Formatter: result.append(self.format_field(obj, format_spec)) self.check_unused_args(used_args, args, kwargs) + self.check_unused_args(used_args, args, kwargs) return ''.join(result) |