Kaydet (Commit) 8c271b0c authored tarafından Victor Stinner's avatar Victor Stinner

Issue #8531: Skip test_ascii_formatd if ctypes module is missing

üst a27dcb76
......@@ -3,7 +3,9 @@
# Test that it works, and test that it's deprecated.
import unittest
from test.support import check_warnings, run_unittest, cpython_only
from test.support import check_warnings, run_unittest, cpython_only, import_module
import_module('ctypes')
class FormatDeprecationTests(unittest.TestCase):
......
......@@ -123,6 +123,8 @@ Build
Tests
-----
- Issue #8531: Skip test_ascii_formatd if ctypes module is missing
- Issue #3864: Skip three test_signal tests on freebsd6 because they fail
if any thread was previously started, most likely due to a platform bug.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment