diff options
author | Eric Smith <eric@trueblade.com> | 2007-09-02 15:33:26 (GMT) |
---|---|---|
committer | Eric Smith <eric@trueblade.com> | 2007-09-02 15:33:26 (GMT) |
commit | 9d4ba3970fa704599769de3676be319133fcaba4 (patch) | |
tree | 6d765fab63aee0c2cfe3db5ef25daf9cdc058d23 /Doc | |
parent | c79461b1648c9209c3652184572a17eef0a76202 (diff) | |
download | cpython-9d4ba3970fa704599769de3676be319133fcaba4.zip cpython-9d4ba3970fa704599769de3676be319133fcaba4.tar.gz cpython-9d4ba3970fa704599769de3676be319133fcaba4.tar.bz2 |
Removed used_args param from string.Formatter.get_field. It was left in by mistake from an earlier edit.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/string.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/string.rst b/Doc/library/string.rst index 7810e46..b0061b7 100644 --- a/Doc/library/string.rst +++ b/Doc/library/string.rst @@ -125,7 +125,7 @@ formatting behaviors using the same implementation as the built-in field, then the values of *field_name*, *format_spec* and *conversion* will be ``None``. - .. method:: get_field(field_name, args, kwargs, used_args) + .. method:: get_field(field_name, args, kwargs) Given *field_name* as returned by :meth:`parse` (see above), convert it to an object to be formatted. Returns a tuple (obj, used_key). The default |