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
73f382de
Kaydet (Commit)
73f382de
authored
Kas 30, 2010
tarafından
Alexander Belopolsky
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #9598: untabify.py will now respect encoding cookie in the files it processes
üst
ff2a4ba7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
untabify.py
Tools/scripts/untabify.py
+4
-3
No files found.
Tools/scripts/untabify.py
Dosyayı görüntüle @
73f382de
...
...
@@ -5,7 +5,7 @@
import
os
import
sys
import
getopt
import
tokenize
def
main
():
tabsize
=
8
...
...
@@ -27,8 +27,9 @@ def main():
def
process
(
filename
,
tabsize
,
verbose
=
True
):
try
:
with
open
(
filename
)
as
f
:
with
tokenize
.
open
(
filename
)
as
f
:
text
=
f
.
read
()
encoding
=
f
.
encoding
except
IOError
as
msg
:
print
(
"
%
r: I/O error:
%
s"
%
(
filename
,
msg
))
return
...
...
@@ -44,7 +45,7 @@ def process(filename, tabsize, verbose=True):
os
.
rename
(
filename
,
backup
)
except
os
.
error
:
pass
with
open
(
filename
,
"w"
)
as
f
:
with
open
(
filename
,
"w"
,
encoding
=
encoding
)
as
f
:
f
.
write
(
newtext
)
if
verbose
:
print
(
filename
)
...
...
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