Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions Lib/test/test_import/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2467,6 +2467,30 @@ def test_multi_init_extension_per_interpreter_gil_compat(self):
self.check_compatible_here(
modname, filename, strict=False, isolated=False)

def test_extra_A(self):
return

def test_extra_B(self):
return

def test_extra_C(self):
return

def test_extra_D(self):
return

def test_extra_E(self):
return

def test_extra_F(self):
return

def test_extra_G(self):
return

def test_extra_H(self):
return

@unittest.skipIf(_testinternalcapi is None, "requires _testinternalcapi")
def test_python_compat(self):
module = 'threading'
Expand Down
Loading