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
00e1f63c
Kaydet (Commit)
00e1f63c
authored
Tem 09, 2009
tarafından
R. David Murray
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Make test work with -O.
üst
8a624a9e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
test_import.py
Lib/test/test_import.py
+8
-2
No files found.
Lib/test/test_import.py
Dosyayı görüntüle @
00e1f63c
...
...
@@ -7,7 +7,8 @@ import sys
import
py_compile
import
warnings
import
marshal
from
test.test_support
import
unlink
,
TESTFN
,
unload
,
run_unittest
,
check_warnings
from
test.test_support
import
(
unlink
,
TESTFN
,
unload
,
run_unittest
,
check_warnings
,
TestFailed
)
def
remove_files
(
name
):
...
...
@@ -102,7 +103,12 @@ class ImportTest(unittest.TestCase):
os
.
chmod
(
fname
,
(
stat
.
S_IRUSR
|
stat
.
S_IRGRP
|
stat
.
S_IROTH
|
stat
.
S_IXUSR
|
stat
.
S_IXGRP
|
stat
.
S_IXOTH
))
__import__
(
TESTFN
)
s
=
os
.
stat
(
fname
+
'c'
)
fn
=
fname
+
'c'
if
not
os
.
path
.
exists
(
fn
):
fn
=
fname
+
'o'
if
not
os
.
path
.
exists
(
fn
):
raise
TestFailed
(
"__import__ did "
"not result in creation of either a .pyc or .pyo file"
)
s
=
os
.
stat
(
fn
)
self
.
assertEquals
(
stat
.
S_IMODE
(
s
.
st_mode
),
stat
.
S_IRUSR
|
stat
.
S_IRGRP
|
stat
.
S_IROTH
)
finally
:
...
...
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