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

arbitrary.  I already changed the docs for this.
This commit is contained in:
Tim Peters 2002-08-23 20:36:58 +00:00
parent d06d03041b
commit 53506be258
1 changed files with 1 additions and 1 deletions

View File

@ -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):