[Python-checkins] CVS: python/nondist/src/Compiler/compiler transformer.py,1.10,1.11

Greg Stein python-dev@python.org
Thu, 3 Aug 2000 10:39:23 -0700


Update of /cvsroot/python/python/nondist/src/Compiler/compiler
In directory slayer.i.sourceforge.net:/tmp/cvs-serv27804

Modified Files:
	transformer.py 
Log Message:
add a bit more legal junk
(too lazy to paste in the whole BSD license tho; included by ref)



Index: transformer.py
===================================================================
RCS file: /cvsroot/python/python/nondist/src/Compiler/compiler/transformer.py,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -r1.10 -r1.11
*** transformer.py	2000/05/02 22:32:59	1.10
--- transformer.py	2000/08/03 17:39:13	1.11
***************
*** 1,2 ****
--- 1,18 ----
+ #
+ # Copyright (C) 1997-1998 Greg Stein. All Rights Reserved.
+ #
+ # This module is provided under a BSD-ish license. See
+ #   http://www.opensource.org/licenses/bsd-license.html
+ # and replace OWNER, ORGANIZATION, and YEAR as appropriate.
+ #
+ #
+ # Written by Greg Stein (gstein@lyra.org)
+ #        and Bill Tutt (rassilon@lima.mudlib.org)
+ # February 1997.
+ #
+ # Support for ast.Node subclasses written and other revisions by
+ #  Jeremy Hylton (jeremy@cnri.reston.va.us)
+ #
+ 
  """Parse tree transformation module.
  
***************
*** 9,20 ****
  """
  
- # Copyright 1997-1998 Greg Stein and Bill Tutt
- #
- # Written by Greg Stein (gstein@lyra.org)
- #        and Bill Tutt (rassilon@lima.mudlib.org)
- # February 1997.
- #
- # Support for Node subclasses written and other revisions by
- #  Jeremy Hylton (jeremy@cnri.reston.va.us)
  #
  # The output tree has the following nodes:
--- 25,28 ----