diff options
Diffstat (limited to 'Lib/sets.py')
-rw-r--r-- | Lib/sets.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/sets.py b/Lib/sets.py index bd4a2b5..4fc260c 100644 --- a/Lib/sets.py +++ b/Lib/sets.py @@ -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): |