From 1e8ee9b3808cd6c1a7a29c75115d1060a8ee877b Mon Sep 17 00:00:00 2001 From: Berker Peksag Date: Sun, 24 Apr 2016 07:31:42 +0300 Subject: Issue #23277: Remove unused sys and os imports Patch by Jon Dufresne. --- Lib/unittest/test/testmock/support.py | 2 -- 1 file changed, 2 deletions(-) (limited to 'Lib/unittest/test/testmock/support.py') diff --git a/Lib/unittest/test/testmock/support.py b/Lib/unittest/test/testmock/support.py index f4738793b35..205431adcac 100644 --- a/Lib/unittest/test/testmock/support.py +++ b/Lib/unittest/test/testmock/support.py @@ -1,5 +1,3 @@ -import sys - def is_instance(obj, klass): """Version of is_instance that doesn't access __class__""" return issubclass(type(obj), klass) -- cgit v1.2.3