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
88079f47
Kaydet (Commit)
88079f47
authored
Tem 15, 2007
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Use the encoding specification when reading the source file.
üst
827bfd07
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
1 deletion
+18
-1
py_compile.py
Lib/py_compile.py
+18
-1
No files found.
Lib/py_compile.py
Dosyayı görüntüle @
88079f47
...
...
@@ -7,6 +7,7 @@ import __builtin__
import
imp
import
marshal
import
os
import
re
import
sys
import
traceback
...
...
@@ -77,6 +78,21 @@ def wr_long(f, x):
(
x
>>
16
)
&
0xff
,
(
x
>>
24
)
&
0xff
]))
def
read_encoding
(
file
,
default
):
"""Read the first two lines of the file looking for coding: xyzzy."""
f
=
open
(
file
,
"rb"
)
try
:
for
i
in
range
(
2
):
line
=
f
.
readline
()
if
not
line
:
break
m
=
re
.
match
(
r".*\bcoding:\s*(\S+)\b"
,
line
)
if
m
:
return
str
(
m
.
group
(
1
))
return
default
finally
:
f
.
close
()
def
compile
(
file
,
cfile
=
None
,
dfile
=
None
,
doraise
=
False
):
"""Byte-compile one Python source file to Python bytecode.
...
...
@@ -112,7 +128,8 @@ def compile(file, cfile=None, dfile=None, doraise=False):
directories).
"""
f
=
open
(
file
,
'U'
)
encoding
=
read_encoding
(
file
,
"utf-8"
)
f
=
open
(
file
,
'U'
,
encoding
=
encoding
)
try
:
timestamp
=
int
(
os
.
fstat
(
f
.
fileno
())
.
st_mtime
)
except
AttributeError
:
...
...
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