(root)/
Python-3.12.0/
Lib/
test/
test_capi/
test_immortal.py
       1  import unittest
       2  from test.support import import_helper
       3  
       4  _testcapi = import_helper.import_module('_testcapi')
       5  
       6  
       7  class ESC[4;38;5;81mTestCAPI(ESC[4;38;5;149munittestESC[4;38;5;149m.ESC[4;38;5;149mTestCase):
       8      def test_immortal_builtins(self):
       9          _testcapi.test_immortal_builtins()
      10  
      11      def test_immortal_small_ints(self):
      12          _testcapi.test_immortal_small_ints()
      13  
      14  
      15  if __name__ == "__main__":
      16      unittest.main()