Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit fd342bf

Browse files
author
Greg Stein
committed
add a bit more legal junk
(too lazy to paste in the whole BSD license tho; included by ref)
1 parent cc2b81e commit fd342bf

2 files changed

Lines changed: 32 additions & 16 deletions

File tree

Lib/compiler/transformer.py

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
#
2+
# Copyright (C) 1997-1998 Greg Stein. All Rights Reserved.
3+
#
4+
# This module is provided under a BSD-ish license. See
5+
# http://www.opensource.org/licenses/bsd-license.html
6+
# and replace OWNER, ORGANIZATION, and YEAR as appropriate.
7+
#
8+
#
9+
# Written by Greg Stein ([email protected])
10+
# and Bill Tutt ([email protected])
11+
# February 1997.
12+
#
13+
# Support for ast.Node subclasses written and other revisions by
14+
# Jeremy Hylton ([email protected])
15+
#
16+
117
"""Parse tree transformation module.
218
319
Transforms Python source code into an abstract syntax tree (AST)
@@ -8,14 +24,6 @@
824
parseFile(path) -> AST
925
"""
1026

11-
# Copyright 1997-1998 Greg Stein and Bill Tutt
12-
#
13-
# Written by Greg Stein ([email protected])
14-
# and Bill Tutt ([email protected])
15-
# February 1997.
16-
#
17-
# Support for Node subclasses written and other revisions by
18-
# Jeremy Hylton ([email protected])
1927
#
2028
# The output tree has the following nodes:
2129
#

Tools/compiler/compiler/transformer.py

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
#
2+
# Copyright (C) 1997-1998 Greg Stein. All Rights Reserved.
3+
#
4+
# This module is provided under a BSD-ish license. See
5+
# http://www.opensource.org/licenses/bsd-license.html
6+
# and replace OWNER, ORGANIZATION, and YEAR as appropriate.
7+
#
8+
#
9+
# Written by Greg Stein ([email protected])
10+
# and Bill Tutt ([email protected])
11+
# February 1997.
12+
#
13+
# Support for ast.Node subclasses written and other revisions by
14+
# Jeremy Hylton ([email protected])
15+
#
16+
117
"""Parse tree transformation module.
218
319
Transforms Python source code into an abstract syntax tree (AST)
@@ -8,14 +24,6 @@
824
parseFile(path) -> AST
925
"""
1026

11-
# Copyright 1997-1998 Greg Stein and Bill Tutt
12-
#
13-
# Written by Greg Stein ([email protected])
14-
# and Bill Tutt ([email protected])
15-
# February 1997.
16-
#
17-
# Support for Node subclasses written and other revisions by
18-
# Jeremy Hylton ([email protected])
1927
#
2028
# The output tree has the following nodes:
2129
#

0 commit comments

Comments
 (0)