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
2b499436
Kaydet (Commit)
2b499436
authored
Mar 24, 2006
tarafından
Neal Norwitz
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Ok, compiler.transformer can really be imported now
üst
0fb43762
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
__init__.py
Lib/compiler/__init__.py
+3
-3
ast.py
Lib/compiler/ast.py
+1
-1
transformer.py
Lib/compiler/transformer.py
+2
-2
No files found.
Lib/compiler/__init__.py
Dosyayı görüntüle @
2b499436
...
...
@@ -21,6 +21,6 @@ compileFile(filename)
Generates a .pyc file by compiling filename.
"""
from
.transformer
import
parse
,
parseFile
from
.visitor
import
walk
from
.pycodegen
import
compile
,
compileFile
from
compiler
.transformer
import
parse
,
parseFile
from
compiler
.visitor
import
walk
from
compiler
.pycodegen
import
compile
,
compileFile
Lib/compiler/ast.py
Dosyayı görüntüle @
2b499436
...
...
@@ -2,7 +2,7 @@
This file is automatically generated by Tools/compiler/astgen.py
"""
from
consts
import
CO_VARARGS
,
CO_VARKEYWORDS
from
co
mpiler.co
nsts
import
CO_VARARGS
,
CO_VARKEYWORDS
def
flatten
(
seq
):
l
=
[]
...
...
Lib/compiler/transformer.py
Dosyayı görüntüle @
2b499436
...
...
@@ -34,8 +34,8 @@ import sys
class
WalkerError
(
StandardError
):
pass
from
consts
import
CO_VARARGS
,
CO_VARKEYWORDS
from
consts
import
OP_ASSIGN
,
OP_DELETE
,
OP_APPLY
from
co
mpiler.co
nsts
import
CO_VARARGS
,
CO_VARKEYWORDS
from
co
mpiler.co
nsts
import
OP_ASSIGN
,
OP_DELETE
,
OP_APPLY
def
parseFile
(
path
):
f
=
open
(
path
,
"U"
)
...
...
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