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
25216baf
Kaydet (Commit)
25216baf
authored
May 08, 2010
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Create __pycache__ dir when the pyc path is explicitly given
Patch from Arfrever Frehtes Taifersar Arahesis.
üst
e5da82ff
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
11 deletions
+5
-11
compileall.py
Lib/compileall.py
+0
-6
py_compile.py
Lib/py_compile.py
+5
-5
No files found.
Lib/compileall.py
Dosyayı görüntüle @
25216baf
...
...
@@ -93,12 +93,6 @@ def compile_file(fullname, ddir=None, force=0, rx=None, quiet=False,
cache_dir
=
os
.
path
.
dirname
(
cfile
)
head
,
tail
=
name
[:
-
3
],
name
[
-
3
:]
if
tail
==
'.py'
:
if
not
legacy
:
try
:
os
.
mkdir
(
cache_dir
)
except
OSError
as
error
:
if
error
.
errno
!=
errno
.
EEXIST
:
raise
if
not
force
:
try
:
mtime
=
int
(
os
.
stat
(
fullname
)
.
st_mtime
)
...
...
Lib/py_compile.py
Dosyayı görüntüle @
25216baf
...
...
@@ -123,11 +123,11 @@ def compile(file, cfile=None, dfile=None, doraise=False):
return
if
cfile
is
None
:
cfile
=
imp
.
cache_from_source
(
file
)
try
:
os
.
mkdir
(
os
.
path
.
dirname
(
cfile
))
except
OSError
as
error
:
if
error
.
errno
!=
errno
.
EEXIST
:
raise
try
:
os
.
makedirs
(
os
.
path
.
dirname
(
cfile
))
except
OSError
as
error
:
if
error
.
errno
!=
errno
.
EEXIST
:
raise
with
open
(
cfile
,
'wb'
)
as
fc
:
fc
.
write
(
b
'
\0\0\0\0
'
)
wr_long
(
fc
,
timestamp
)
...
...
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