else
This commit is contained in:
parent
b3bb5256da
commit
041af88675
1 changed files with 2 additions and 3 deletions
|
@ -18,12 +18,11 @@ A class to imitate the [Stack](http://en.wikipedia.org/wiki/Stack_(abstract_data
|
||||||
|
|
||||||
def populate(self, itemlist, destructive=False):
|
def populate(self, itemlist, destructive=False):
|
||||||
Push as many items as possible from `itemlist` onto the Stack
|
Push as many items as possible from `itemlist` onto the Stack
|
||||||
if `destructive`==True, the current data will be overwritten
|
|
||||||
and discard the rest.
|
and discard the rest.
|
||||||
|
if `destructive` is True, the current data will be overwritten
|
||||||
|
|
||||||
def push(self, item):
|
def push(self, item):
|
||||||
Push an item onto the end of the Stack
|
Push an item onto the top of the Stack
|
||||||
|
|
||||||
|
|
||||||
def top(self):
|
def top(self):
|
||||||
Return the item on the top of the stack without popping it
|
Return the item on the top of the stack without popping it
|
||||||
|
|
Loading…
Reference in a new issue