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
378b6467
Commit
378b6467
authored
Sep 20, 2001
by
Jeremy Hylton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove setup.py, unnecessary since compiler package is the std
library. Update README.
parent
30ec6cec
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
14 deletions
+2
-14
Tools/compiler/README
Tools/compiler/README
+2
-5
Tools/compiler/setup.py
Tools/compiler/setup.py
+0
-9
No files found.
Tools/compiler/README
View file @
378b6467
This directory contains modules for a a Python source to bytecode compiler
This directory contains support tools for the Python compiler package,
written in pure Python. To install the compiler modules so they're
which is now part of the standard library.
available for use by third-party Python software, run 'python setup.py
install'.
compile.py Demo that compiles a Python module into a .pyc file
compile.py Demo that compiles a Python module into a .pyc file
using the pure-Python compiler code.
using the pure-Python compiler code.
...
@@ -18,4 +16,3 @@ regrtest.py Runs the Python test suite using bytecode generated
...
@@ -18,4 +16,3 @@ regrtest.py Runs the Python test suite using bytecode generated
by the pure-Python compiler code instead of the
by the pure-Python compiler code instead of the
builtin compiler.
builtin compiler.
setup.py Setup file for installing the compiler code as a package.
Tools/compiler/setup.py
deleted
100644 → 0
View file @
30ec6cec
#!/usr/bin/env python
from
distutils.core
import
setup
setup
(
name
=
"compiler"
,
version
=
"1.0"
,
author
=
"Jeremy Hylton"
,
author_email
=
"jeremy@zope.com"
,
packages
=
[
"compiler"
])
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