From 70a6075f98e4ac6154a8b3de72dd39073b0d885b Mon Sep 17 00:00:00 2001 From: Barry Warsaw Date: Wed, 3 May 2023 04:55:22 -0700 Subject: [PATCH] gh-98040: Backport python/cpython#98059 Removed ``fixtures.NullFinder``. --------- Co-authored-by: Oleg Iarygin Co-authored-by: Adam Turner <9087854+aa-turner@users.noreply.github.com> --- tests/fixtures.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/tests/fixtures.py b/tests/fixtures.py index 6d26bb91..c0b0fa32 100644 --- a/tests/fixtures.py +++ b/tests/fixtures.py @@ -349,11 +349,6 @@ def DALS(str): return textwrap.dedent(str).lstrip() -class NullFinder: - def find_module(self, name): - pass - - class ZipFixtures: root = 'tests.data'