blob: ef5d32b7f0193531d9355f8d9ed104497c99b90c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
import unittest
from test.support import import_helper
_testcapi = import_helper.import_module('_testcapi')
class TestCAPI(unittest.TestCase):
def test_immortal_builtins(self):
_testcapi.test_immortal_builtins()
def test_immortal_small_ints(self):
_testcapi.test_immortal_small_ints()
if __name__ == "__main__":
unittest.main()
|