Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
5953b404
Kaydet (Commit)
5953b404
authored
Eyl 20, 2001
tarafından
Jeremy Hylton
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Remove setup.py, unnecessary since compiler package is the std
library. Update README.
üst
e54b5b4f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
14 deletions
+2
-14
README
Tools/compiler/README
+2
-5
setup.py
Tools/compiler/setup.py
+0
-9
No files found.
Tools/compiler/README
Dosyayı görüntüle @
5953b404
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
Dosyayı görüntüle @
e54b5b4f
#!/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