Made popping like a million times faster because I was dumb before.
master
voussoir 2014-12-04 11:55:57 -08:00
parent 54515138fc
commit 379462534c
1 changed files with 2 additions and 2 deletions

View File

@ -73,7 +73,7 @@ class Stack:
if len(self) == 0:
raise StackError("Cannot pop from empty Stack")
lastitem = self.data[-1]
self.data = self.data[:-1]
del self.data[-1]
return lastitem
def populate(self, itemlist, destructive=False):