blob: 75f3290680a2cbad5c77c7944f9e573ace70eb3e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#! /usr/bin/python
#
# Copyright(c) 2006, James Le Cuirot <chewi@aura-online.co.uk>
#
# Licensed under the GNU General Public License, v2
#
# $Header: $
class Parser:
def parse(self, ins):
raise NotImplementedError
def output(self, ous, tree):
raise NotImplementedError
if __name__ == "__main__":
print "This is not an executable module"
|