File: __init__.py

package info (click to toggle)
python-mxstack 0.3.0-2
  • links: PTS
  • area: main
  • in suites: potato
  • size: 204 kB
  • ctags: 272
  • sloc: ansic: 1,329; python: 163; makefile: 44; sh: 19
file content (19 lines) | stat: -rw-r--r-- 684 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
""" mxStack - A stack implementation

    (c) Copyright Marc-Andre Lemburg; All Rights Reserved.
    See the documentation for further information on copyrights,
    or contact the author (mal@lemburg.com).
"""
__package_info__ = """
BEGIN PYTHON-PACKAGE-INFO 1.0
Title:			mxStack - a fast stack implementation
Current-Version:	0.3.0
Home-Page:		http://starship.skyport.net/~lemburg/mxStack.html
Primary-Site:		http://starship.skyport.net/~lemburg/mxStack-0.3.0.zip

This package contains a generic and very simple stack implementation
written in C for speed. For full documentation see the home page.
END PYTHON-PACKAGE-INFO
"""
from mxStack import *
from mxStack import __version__