home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / fnb101.zip / Lib / site-packages / Fnorb / parser / Stack.py < prev   
Text File  |  1999-06-28  |  2KB  |  77 lines

  1. #!/usr/bin/env python
  2. #############################################################################
  3. # Copyright (C) DSTC Pty Ltd (ACN 052 372 577) 1997, 1998, 1999
  4. # All Rights Reserved.
  5. #
  6. # The software contained on this media is the property of the DSTC Pty
  7. # Ltd.  Use of this software is strictly in accordance with the
  8. # license agreement in the accompanying LICENSE.HTML file.  If your
  9. # distribution of this software does not contain a LICENSE.HTML file
  10. # then you have no rights to use this software in any manner and
  11. # should contact DSTC at the address below to determine an appropriate
  12. # licensing arrangement.
  13. #      DSTC Pty Ltd
  14. #      Level 7, GP South
  15. #      Staff House Road
  16. #      University of Queensland
  17. #      St Lucia, 4072
  18. #      Australia
  19. #      Tel: +61 7 3365 4310
  20. #      Fax: +61 7 3365 4311
  21. #      Email: enquiries@dstc.edu.au
  22. # This software is being provided "AS IS" without warranty of any
  23. # kind.  In no event shall DSTC Pty Ltd be liable for damage of any
  24. # kind arising out of or in connection with the use or performance of
  25. # this software.
  26. #
  27. # Project:      Fnorb
  28. # File:         $Source: /units/arch/src/Fnorb/parser/RCS/Stack.py,v $
  29. # Version:      @(#)$RCSfile: Stack.py,v $ $Revision: 1.7 $
  30. #
  31. #############################################################################
  32. """ A simple stack implementation. """
  33.  
  34.  
  35. class Stack:
  36.     """ A simple stack implementation. """
  37.     
  38.     def __init__(self):
  39.     """ Constructor. """
  40.  
  41.     self.__items = []
  42.     return
  43.  
  44.     def __len__(self):
  45.     """ Number of items on the stack. """
  46.  
  47.     return len(self.__items)
  48.  
  49.     def __str__(self):
  50.     return str(self.__items)
  51.  
  52.     def push(self, item):
  53.     """ Push an item onto the stack. """
  54.  
  55.     self.__items.append(item)
  56.     return
  57.  
  58.     def pop(self):
  59.     """ Pop the top item off the stack. """
  60.  
  61.     del self.__items[-1]
  62.     return
  63.  
  64.     def get(self):
  65.     """ Return the item on the top of the stack. """
  66.     
  67.     return self.__items[-1]
  68.  
  69.     def items(self):
  70.     """ Return a copy of the stack as a list. """
  71.  
  72.     return self.__items[:]
  73.     
  74. #############################################################################
  75.