mirror of
https://github.com/python/cpython.git
synced 2025-11-02 11:08:57 +00:00
Issue #8531: Skip test_ascii_formatd if ctypes module is missing
This commit is contained in:
parent
a27dcb76ee
commit
8c271b0c65
2 changed files with 5 additions and 1 deletions
|
|
@ -3,7 +3,9 @@
|
||||||
# Test that it works, and test that it's deprecated.
|
# Test that it works, and test that it's deprecated.
|
||||||
|
|
||||||
import unittest
|
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):
|
class FormatDeprecationTests(unittest.TestCase):
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -123,6 +123,8 @@ Build
|
||||||
Tests
|
Tests
|
||||||
-----
|
-----
|
||||||
|
|
||||||
|
- Issue #8531: Skip test_ascii_formatd if ctypes module is missing
|
||||||
|
|
||||||
- Issue #3864: Skip three test_signal tests on freebsd6 because they fail
|
- 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.
|
if any thread was previously started, most likely due to a platform bug.
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue