Commit 408af3be authored by Christian Zagrodnick's avatar Christian Zagrodnick

Documented KeyError on remove

parent 78b697ac
...@@ -99,7 +99,10 @@ class ISetMutable(IKeyed): ...@@ -99,7 +99,10 @@ class ISetMutable(IKeyed):
""" """
def remove(key): def remove(key):
"""Remove the key from the set.""" """Remove the key from the set.
Raises KeyError if key is not in the set.
"""
def update(seq): def update(seq):
"""Add the items from the given sequence to the set.""" """Add the items from the given sequence to the set."""
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment