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
a4b091e1
Kaydet (Commit)
a4b091e1
authored
Haz 23, 2017
tarafından
Victor Stinner
Kaydeden (comit)
GitHub
Haz 23, 2017
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-30604: Skip CoExtra tests if ctypes is missing (#2356)
üst
c8d6ab2e
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
test_code.py
Lib/test/test_code.py
+6
-3
No files found.
Lib/test/test_code.py
Dosyayı görüntüle @
a4b091e1
...
...
@@ -106,6 +106,10 @@ import sys
import
threading
import
unittest
import
weakref
try
:
import
ctypes
except
ImportError
:
ctypes
=
None
from
test.support
import
(
run_doctest
,
run_unittest
,
cpython_only
,
check_impl_detail
)
...
...
@@ -214,8 +218,7 @@ class CodeWeakRefTest(unittest.TestCase):
self
.
assertTrue
(
self
.
called
)
if
check_impl_detail
(
cpython
=
True
):
import
ctypes
if
check_impl_detail
(
cpython
=
True
)
and
ctypes
is
not
None
:
py
=
ctypes
.
pythonapi
freefunc
=
ctypes
.
CFUNCTYPE
(
None
,
ctypes
.
c_voidp
)
...
...
@@ -311,7 +314,7 @@ def test_main(verbose=None):
from
test
import
test_code
run_doctest
(
test_code
,
verbose
)
tests
=
[
CodeTest
,
CodeConstsTest
,
CodeWeakRefTest
]
if
check_impl_detail
(
cpython
=
True
):
if
check_impl_detail
(
cpython
=
True
)
and
ctypes
is
not
None
:
tests
.
append
(
CoExtra
)
run_unittest
(
*
tests
)
...
...
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