diff options
author | Guido van Rossum <guido@python.org> | 2002-08-20 21:51:59 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2002-08-20 21:51:59 (GMT) |
commit | c9196bc88d4ed6bd808635fe7f64893cdb3cc704 (patch) | |
tree | bdf453f028945a26640a4135de9098cd57e1d598 /Lib | |
parent | 5033b36c442c7a2d2c3637b7d8da16666c1a21ea (diff) | |
download | cpython-c9196bc88d4ed6bd808635fe7f64893cdb3cc704.zip cpython-c9196bc88d4ed6bd808635fe7f64893cdb3cc704.tar.gz cpython-c9196bc88d4ed6bd808635fe7f64893cdb3cc704.tar.bz2 |
Rename popitem() to pop(). (An idea from SF patch 597444.)
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/sets.py | 2 | ||||
-rw-r--r-- | Lib/test/test_sets.py | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Lib/sets.py b/Lib/sets.py index c301c41..0512846 100644 --- a/Lib/sets.py +++ b/Lib/sets.py @@ -420,7 +420,7 @@ class Set(BaseSet): except KeyError: pass - def popitem(self): + def pop(self): """Remove and return a randomly-chosen set element.""" return self._data.popitem()[0] diff --git a/Lib/test/test_sets.py b/Lib/test/test_sets.py index 6c72b0e..22a9db5 100644 --- a/Lib/test/test_sets.py +++ b/Lib/test/test_sets.py @@ -292,10 +292,10 @@ class TestMutate(unittest.TestCase): self.set.clear() assert len(self.set) == 0, "Clearing set" - def test_popitem(self): + def test_pop(self): popped = {} while self.set: - popped[self.set.popitem()] = None + popped[self.set.pop()] = None assert len(popped) == len(self.values), "Popping items" for v in self.values: assert v in popped, "Popping items" |