Skip to content

Commit fec69a4

Browse files
committed
tweak
1 parent cd8a4d4 commit fec69a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -523,7 +523,7 @@ must be hashable, but values can be any object::
523523
``d.pop(key, [default])`` Return value for key or default (``KeyError`` if not set)
524524
``d.popitem()`` Return arbitrary (key, value) tuple. ``KeyError`` if empty
525525
``d.setdefault(k, [default])`` Does ``d.get(k, default)``. If ``k`` missing, sets to default
526-
``d.update(dict_or_seq)`` Mutate ``d`` with values of ``dict_or_seq`` (dictionary or iterable of (key, value) pairs)
526+
``d.update(d2)`` Mutate ``d`` with values of ``d2`` (dictionary or iterable of (key, value) pairs)
527527
``d.values()`` View of values
528528
================================================================= ============================================================
529529

0 commit comments

Comments
 (0)