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
82c8d933
Kaydet (Commit)
82c8d933
authored
Haz 29, 2010
tarafından
Mark Dickinson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
unparse.py: respect coding cookie in input files
üst
3c0b317e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
unparse.py
Demo/parser/unparse.py
+5
-1
No files found.
Demo/parser/unparse.py
Dosyayı görüntüle @
82c8d933
"Usage: unparse.py <path to source file>"
"Usage: unparse.py <path to source file>"
import
sys
import
sys
import
ast
import
ast
import
tokenize
import
io
import
io
import
os
import
os
...
@@ -548,7 +549,10 @@ class Unparser:
...
@@ -548,7 +549,10 @@ class Unparser:
self
.
write
(
" as "
+
t
.
asname
)
self
.
write
(
" as "
+
t
.
asname
)
def
roundtrip
(
filename
,
output
=
sys
.
stdout
):
def
roundtrip
(
filename
,
output
=
sys
.
stdout
):
source
=
open
(
filename
)
.
read
()
with
open
(
filename
,
"rb"
)
as
pyfile
:
encoding
=
tokenize
.
detect_encoding
(
pyfile
.
readline
)[
0
]
with
open
(
filename
,
"r"
,
encoding
=
encoding
)
as
pyfile
:
source
=
pyfile
.
read
()
tree
=
compile
(
source
,
filename
,
"exec"
,
ast
.
PyCF_ONLY_AST
)
tree
=
compile
(
source
,
filename
,
"exec"
,
ast
.
PyCF_ONLY_AST
)
Unparser
(
tree
,
output
)
Unparser
(
tree
,
output
)
...
...
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