Kaydet (Commit) 9479d1ad authored tarafından Eli Bendersky's avatar Eli Bendersky

Issue #11388: Added a clear() method to MutableSequence

üst 1bc4f193
......@@ -596,6 +596,13 @@ class MutableSequence(Sequence):
def append(self, value):
self.insert(len(self), value)
def clear(self):
try:
while True:
self.pop()
except IndexError:
pass
def reverse(self):
n = len(self)
for i in range(n//2):
......
......@@ -140,6 +140,8 @@ Library
- Issue #10276: Fix the results of zlib.crc32() and zlib.adler32() on buffers
larger than 4GB. Patch by Nadeem Vawda.
- Issue #11388: Added a clear() method to MutableSequence
Build
-----
......
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