From fb5d0a78cfa39472aab8c9d81ec299a6eb351869 Mon Sep 17 00:00:00 2001 From: Michael Foord Date: Sun, 25 Mar 2012 19:35:22 +0100 Subject: unittest.mock: remove another piece of Python 2 specific code --- Lib/unittest/mock.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/Lib/unittest/mock.py b/Lib/unittest/mock.py index 3cef550..d73bd53 100644 --- a/Lib/unittest/mock.py +++ b/Lib/unittest/mock.py @@ -2120,8 +2120,6 @@ FunctionTypes = ( type(create_autospec), # instance method type(ANY.__eq__), - # unbound method - type(_ANY.__eq__), ) -- cgit v0.12