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
24c738a9
Kaydet (Commit)
24c738a9
authored
Mar 19, 2017
tarafından
Serhiy Storchaka
Kaydeden (comit)
GitHub
Mar 19, 2017
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-29845: Mark tests that use _testcapi as CPython-only (#711)
üst
6b5a9ec4
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
1 deletion
+8
-1
test_structures.py
Lib/ctypes/test/test_structures.py
+4
-1
test_atexit.py
Lib/test/test_atexit.py
+1
-0
test_coroutines.py
Lib/test/test_coroutines.py
+1
-0
test_socket.py
Lib/test/test_socket.py
+1
-0
test_tracemalloc.py
Lib/test/test_tracemalloc.py
+1
-0
No files found.
Lib/ctypes/test/test_structures.py
Dosyayı görüntüle @
24c738a9
...
...
@@ -2,8 +2,8 @@ import unittest
from
ctypes
import
*
from
ctypes.test
import
need_symbol
from
struct
import
calcsize
import
_testcapi
import
_ctypes_test
import
test.support
class
SubclassesTest
(
unittest
.
TestCase
):
def
test_subclass
(
self
):
...
...
@@ -202,7 +202,10 @@ class StructureTestCase(unittest.TestCase):
"_pack_"
:
-
1
}
self
.
assertRaises
(
ValueError
,
type
(
Structure
),
"X"
,
(
Structure
,),
d
)
@test.support.cpython_only
def
test_packed_c_limits
(
self
):
# Issue 15989
import
_testcapi
d
=
{
"_fields_"
:
[(
"a"
,
c_byte
)],
"_pack_"
:
_testcapi
.
INT_MAX
+
1
}
self
.
assertRaises
(
ValueError
,
type
(
Structure
),
"X"
,
(
Structure
,),
d
)
...
...
Lib/test/test_atexit.py
Dosyayı görüntüle @
24c738a9
...
...
@@ -143,6 +143,7 @@ class GeneralTest(unittest.TestCase):
self
.
assertEqual
(
l
,
[
5
])
@support.cpython_only
class
SubinterpreterTest
(
unittest
.
TestCase
):
def
test_callbacks_leak
(
self
):
...
...
Lib/test/test_coroutines.py
Dosyayı görüntüle @
24c738a9
...
...
@@ -2117,6 +2117,7 @@ class SysSetCoroWrapperTest(unittest.TestCase):
sys
.
set_coroutine_wrapper
(
None
)
@support.cpython_only
class
CAPITest
(
unittest
.
TestCase
):
def
test_tp_await_1
(
self
):
...
...
Lib/test/test_socket.py
Dosyayı görüntüle @
24c738a9
...
...
@@ -906,6 +906,7 @@ class GeneralModuleTests(unittest.TestCase):
self
.
assertEqual
(
swapped
&
mask
,
mask
)
self
.
assertRaises
(
OverflowError
,
func
,
1
<<
34
)
@support.cpython_only
def
testNtoHErrors
(
self
):
import
_testcapi
s_good_values
=
[
0
,
1
,
2
,
0xffff
]
...
...
Lib/test/test_tracemalloc.py
Dosyayı görüntüle @
24c738a9
...
...
@@ -865,6 +865,7 @@ class TestCommandLine(unittest.TestCase):
b
'number of frames'
,
stderr
)
@unittest.skipIf
(
_testcapi
is
None
,
'need _testcapi'
)
def
test_pymem_alloc0
(
self
):
# Issue #21639: Check that PyMem_Malloc(0) with tracemalloc enabled
# does not crash.
...
...
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