Commit 1ea5ab61 authored by Christian Zagrodnick's avatar Christian Zagrodnick

Documented KeyError on remove

parent 5f62fd03
......@@ -99,7 +99,10 @@ class ISetMutable(IKeyed):
"""
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):
"""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