diff options
author | Éric Araujo <merwok@netwok.org> | 2010-08-18 22:29:54 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2010-08-18 22:29:54 (GMT) |
commit | 0fc86b86ed1381866f159f534125449d069c1785 (patch) | |
tree | 022cc94b3852982d46ea417036dff9478c911e85 /Doc | |
parent | 3119ed73aaf288a2aebfd41346a7e68e078ba0ce (diff) | |
download | cpython-0fc86b86ed1381866f159f534125449d069c1785.zip cpython-0fc86b86ed1381866f159f534125449d069c1785.tar.gz cpython-0fc86b86ed1381866f159f534125449d069c1785.tar.bz2 |
Fix indentation level
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/stdtypes.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index ece9ecb..a92d7b9 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -2139,8 +2139,8 @@ pairs within braces, for example: ``{'jack': 4098, 'sjoerd': 4127}`` or ``{4098: .. method:: update([other]) - Update the dictionary with the key/value pairs from *other*, overwriting - existing keys. Return ``None``. + Update the dictionary with the key/value pairs from *other*, overwriting + existing keys. Return ``None``. :meth:`update` accepts either another dictionary object or an iterable of key/value pairs (as a tuple or other iterable of length two). If keyword |