summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGreg Stein <gstein@lyra.org>2000-08-03 17:39:13 (GMT)
committerGreg Stein <gstein@lyra.org>2000-08-03 17:39:13 (GMT)
commitfd342bf453ee35bfaf0724b253384ea8844a9e10 (patch)
tree5dfc138b05c5147494274602ea809cd7aa808c93
parentcc2b81e7f3236ce8b6d0c16f17fb44fd6a28493e (diff)
downloadcpython-fd342bf453ee35bfaf0724b253384ea8844a9e10.zip
cpython-fd342bf453ee35bfaf0724b253384ea8844a9e10.tar.gz
cpython-fd342bf453ee35bfaf0724b253384ea8844a9e10.tar.bz2
add a bit more legal junk
(too lazy to paste in the whole BSD license tho; included by ref)
-rw-r--r--Lib/compiler/transformer.py24
-rw-r--r--Tools/compiler/compiler/transformer.py24
2 files changed, 32 insertions, 16 deletions
diff --git a/Lib/compiler/transformer.py b/Lib/compiler/transformer.py
index d23fdb8..81100a9 100644
--- a/Lib/compiler/transformer.py
+++ b/Lib/compiler/transformer.py
@@ -1,3 +1,19 @@
+#
+# 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.
Transforms Python source code into an abstract syntax tree (AST)
@@ -8,14 +24,6 @@ parse(buf) -> AST
parseFile(path) -> AST
"""
-# 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:
#
diff --git a/Tools/compiler/compiler/transformer.py b/Tools/compiler/compiler/transformer.py
index d23fdb8..81100a9 100644
--- a/Tools/compiler/compiler/transformer.py
+++ b/Tools/compiler/compiler/transformer.py
@@ -1,3 +1,19 @@
+#
+# 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.
Transforms Python source code into an abstract syntax tree (AST)
@@ -8,14 +24,6 @@ parse(buf) -> AST
parseFile(path) -> AST
"""
-# 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:
#