Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
ee59eb33
Commit
ee59eb33
authored
Aug 03, 2000
by
Greg Stein
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add a bit more legal junk
(too lazy to paste in the whole BSD license tho; included by ref)
parent
39feb309
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
32 additions
and
16 deletions
+32
-16
Lib/compiler/transformer.py
Lib/compiler/transformer.py
+16
-8
Tools/compiler/compiler/transformer.py
Tools/compiler/compiler/transformer.py
+16
-8
No files found.
Lib/compiler/transformer.py
View file @
ee59eb33
#
# 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.
"""Parse tree transformation module.
Transforms Python source code into an abstract syntax tree (AST)
Transforms Python source code into an abstract syntax tree (AST)
...
@@ -8,14 +24,6 @@ parse(buf) -> AST
...
@@ -8,14 +24,6 @@ parse(buf) -> AST
parseFile(path) -> 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:
# The output tree has the following nodes:
#
#
...
...
Tools/compiler/compiler/transformer.py
View file @
ee59eb33
#
# 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.
"""Parse tree transformation module.
Transforms Python source code into an abstract syntax tree (AST)
Transforms Python source code into an abstract syntax tree (AST)
...
@@ -8,14 +24,6 @@ parse(buf) -> AST
...
@@ -8,14 +24,6 @@ parse(buf) -> AST
parseFile(path) -> 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:
# The output tree has the following nodes:
#
#
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment