mirror of
https://github.com/python/cpython.git
synced 2025-09-27 02:39:58 +00:00
Fix typo and tests without docstrings.
This commit is contained in:
parent
5de1f82464
commit
6b794b8b59
1 changed files with 3 additions and 2 deletions
|
@ -33,7 +33,7 @@ import unittest
|
||||||
import numbers
|
import numbers
|
||||||
import locale
|
import locale
|
||||||
from test.support import (run_unittest, run_doctest, is_resource_enabled,
|
from test.support import (run_unittest, run_doctest, is_resource_enabled,
|
||||||
requires_IEEE_754)
|
requires_IEEE_754, requires_docstrings)
|
||||||
from test.support import (check_warnings, import_fresh_module, TestFailed,
|
from test.support import (check_warnings, import_fresh_module, TestFailed,
|
||||||
run_with_locale, cpython_only)
|
run_with_locale, cpython_only)
|
||||||
import random
|
import random
|
||||||
|
@ -5391,7 +5391,8 @@ class CWhitebox(unittest.TestCase):
|
||||||
y = Decimal(10**(9*25)).__sizeof__()
|
y = Decimal(10**(9*25)).__sizeof__()
|
||||||
self.assertEqual(y, x+4)
|
self.assertEqual(y, x+4)
|
||||||
|
|
||||||
unittest.skipUnless(C, "test requires C version")
|
@requires_docstrings
|
||||||
|
@unittest.skipUnless(C, "test requires C version")
|
||||||
class SignatureTest(unittest.TestCase):
|
class SignatureTest(unittest.TestCase):
|
||||||
"""Function signatures"""
|
"""Function signatures"""
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue