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
31b798d3
Kaydet (Commit)
31b798d3
authored
Kas 28, 2011
tarafından
Meador Inge
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Issue #12618: py_compile cannot create files in current directory
Initial patch by Sjoerd de Vries.
üst
d1b097f8
22b9b379
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
16 additions
and
1 deletion
+16
-1
py_compile.py
Lib/py_compile.py
+3
-1
test_py_compile.py
Lib/test/test_py_compile.py
+9
-0
ACKS
Misc/ACKS
+1
-0
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/py_compile.py
Dosyayı görüntüle @
31b798d3
...
...
@@ -130,7 +130,9 @@ def compile(file, cfile=None, dfile=None, doraise=False, optimize=-1):
else
:
cfile
=
imp
.
cache_from_source
(
file
)
try
:
os
.
makedirs
(
os
.
path
.
dirname
(
cfile
))
dirname
=
os
.
path
.
dirname
(
cfile
)
if
dirname
:
os
.
makedirs
(
dirname
)
except
OSError
as
error
:
if
error
.
errno
!=
errno
.
EEXIST
:
raise
...
...
Lib/test/test_py_compile.py
Dosyayı görüntüle @
31b798d3
...
...
@@ -39,6 +39,15 @@ class PyCompileTests(unittest.TestCase):
py_compile
.
compile
(
self
.
source_path
)
self
.
assertTrue
(
os
.
path
.
exists
(
self
.
cache_path
))
def
test_cwd
(
self
):
cwd
=
os
.
getcwd
()
os
.
chdir
(
self
.
directory
)
py_compile
.
compile
(
os
.
path
.
basename
(
self
.
source_path
),
os
.
path
.
basename
(
self
.
pyc_path
))
os
.
chdir
(
cwd
)
self
.
assertTrue
(
os
.
path
.
exists
(
self
.
pyc_path
))
self
.
assertFalse
(
os
.
path
.
exists
(
self
.
cache_path
))
def
test_relative_path
(
self
):
py_compile
.
compile
(
os
.
path
.
relpath
(
self
.
source_path
),
os
.
path
.
relpath
(
self
.
pyc_path
))
...
...
Misc/ACKS
Dosyayı görüntüle @
31b798d3
...
...
@@ -1014,6 +1014,7 @@ Kannan Vijayan
Kurt Vile
Norman Vine
Frank Visser
Sjoerd de Vries
Niki W. Waibel
Wojtek Walczak
Charles Waldman
...
...
Misc/NEWS
Dosyayı görüntüle @
31b798d3
...
...
@@ -395,6 +395,9 @@ Core and Builtins
Library
-------
-
Issue
#
12618
:
Fix
a
bug
that
prevented
py_compile
from
creating
byte
compiled
files
in
the
current
directory
.
Initial
patch
by
Sjoerd
de
Vries
.
-
Issue
#
13444
:
When
stdout
has
been
closed
explicitly
,
we
should
not
attempt
to
flush
it
at
shutdown
and
print
an
error
.
...
...
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