Commit 53506be2 authored by Tim Peters's avatar Tim Peters

pop() docstring: this isn't a randomly-chosen element, it's merely

arbitrary.  I already changed the docs for this.
parent d06d0304
......@@ -455,7 +455,7 @@ class Set(BaseSet):
pass
def pop(self):
"""Remove and return a randomly-chosen set element."""
"""Remove and return an arbitrary set element."""
return self._data.popitem()[0]
def _as_immutable(self):
......
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