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
a90f311d
Kaydet (Commit)
a90f311d
authored
Agu 01, 2012
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Cleanup findnocoding.py and pysource.py scripts (with infile/infile.close)
üst
98516a69
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
5 deletions
+4
-5
findnocoding.py
Tools/scripts/findnocoding.py
+0
-1
pysource.py
Tools/scripts/pysource.py
+4
-4
No files found.
Tools/scripts/findnocoding.py
Dosyayı görüntüle @
a90f311d
...
...
@@ -60,7 +60,6 @@ def needs_declaration(fullpath):
if
get_declaration
(
line1
)
or
get_declaration
(
line2
):
# the file does have an encoding declaration, so trust it
infile
.
close
()
return
False
# check the whole file for non utf-8 characters
...
...
Tools/scripts/pysource.py
Dosyayı görüntüle @
a90f311d
...
...
@@ -55,8 +55,8 @@ def looks_like_python(fullpath):
if
infile
is
None
:
return
False
line
=
infile
.
readline
()
infile
.
clos
e
()
with
infile
:
line
=
infile
.
readlin
e
()
if
binary_re
.
search
(
line
):
# file appears to be binary
...
...
@@ -76,8 +76,8 @@ def can_be_compiled(fullpath):
if
infile
is
None
:
return
False
code
=
infile
.
read
()
infile
.
close
()
with
infile
:
code
=
infile
.
read
()
try
:
compile
(
code
,
fullpath
,
"exec"
)
...
...
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