From 892221bfa04a41cf581f988ba19dc263f557e157 Mon Sep 17 00:00:00 2001 From: Adam Johnson Date: Tue, 19 Nov 2019 19:45:20 +0000 Subject: bpo-38839: Fix some unused functions in tests (GH-17189) --- Lib/distutils/tests/support.py | 2 -- 1 file changed, 2 deletions(-) (limited to 'Lib/distutils/tests/support.py') diff --git a/Lib/distutils/tests/support.py b/Lib/distutils/tests/support.py index 041309851d..259af882ec 100644 --- a/Lib/distutils/tests/support.py +++ b/Lib/distutils/tests/support.py @@ -39,8 +39,6 @@ class LoggingSilencer(object): self.logs.append((level, msg, args)) def get_logs(self, *levels): - def _format(msg, args): - return msg % args return [msg % args for level, msg, args in self.logs if level in levels] -- cgit v1.2.1