diff options
author | Adam Johnson <me@adamj.eu> | 2019-11-19 19:45:20 (GMT) |
---|---|---|
committer | Brett Cannon <54418+brettcannon@users.noreply.github.com> | 2019-11-19 19:45:20 (GMT) |
commit | 892221bfa04a41cf581f988ba19dc263f557e157 (patch) | |
tree | 3961cf2084befe960fd1171381564886cb4a913c /Lib/distutils | |
parent | 54b32c987146123f2237f0e21b1d02b1c1ebdf6f (diff) | |
download | cpython-892221bfa04a41cf581f988ba19dc263f557e157.zip cpython-892221bfa04a41cf581f988ba19dc263f557e157.tar.gz cpython-892221bfa04a41cf581f988ba19dc263f557e157.tar.bz2 |
bpo-38839: Fix some unused functions in tests (GH-17189)
Diffstat (limited to 'Lib/distutils')
-rw-r--r-- | Lib/distutils/tests/support.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/distutils/tests/support.py b/Lib/distutils/tests/support.py index 0413098..259af88 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] |