diff options
author | sienkiew <sienkiew@d34015c8-bcbb-4646-8ac8-8ba5febf221d> | 2011-09-27 13:33:55 -0400 |
---|---|---|
committer | sienkiew <sienkiew@d34015c8-bcbb-4646-8ac8-8ba5febf221d> | 2011-09-27 13:33:55 -0400 |
commit | 952032bc3b5a1b0fc215b677ca1aa32385ba525b (patch) | |
tree | 16d513b8a87c86322d5b80e60ba33600da0f6dd7 /exyapps/runtime.py | |
parent | 2402b5a9be840e39749a245fea2a516da38a6f64 (diff) | |
download | exyapps-952032bc3b5a1b0fc215b677ca1aa32385ba525b.tar.gz |
various explanatory text
version number in __version__
AURA copyrights
remove code to support importing runtime instead of incorporating it into the generated parser
add MANIFEST.in
instructions for re-generating the parser that exyapps uses internally
git-svn-id: http://svn.stsci.edu/svn/ssb/etal/exyapps/trunk@431 d34015c8-bcbb-4646-8ac8-8ba5febf221d
Diffstat (limited to 'exyapps/runtime.py')
-rw-r--r-- | exyapps/runtime.py | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/exyapps/runtime.py b/exyapps/runtime.py index bcbf253..6c984b8 100644 --- a/exyapps/runtime.py +++ b/exyapps/runtime.py @@ -1,13 +1,23 @@ -# Yapps 2 Runtime, part of Yapps 2 - yet another python parser system +# exyapps - yet another python parser system # Copyright 1999-2003 by Amit J. Patel <amitp@cs.stanford.edu> # Enhancements copyright 2003-2004 by Matthias Urlichs <smurf@debian.org> +# Copyright 2011 by Association of Universities for Research in Astronomy # -# This version of the Yapps 2 Runtime can be distributed under the -# terms of the MIT open source license, either found in the LICENSE file -# included with the Yapps distribution -# <http://theory.stanford.edu/~amitp/yapps/> or at +# This software can be distributed under the terms of the MIT +# open source license, either found in the LICENSE file or at # <http://www.opensource.org/licenses/mit-license.php> # +# ----- +# +# Changes from the debian version: +# - indented with spaces, not tabs +# - when you instantiate the parser object, you can pass in an object +# data=XXX that will be available to the parser as self.data; this +# is basically a hook to provide parser-global data. +# +# Note that this file is incorporated directly into the generated parser. +# Take care when defining new file-global names because the generated +# parser has its own globals. """Run time libraries needed to run parsers generated by Yapps. |