From: Michael Foord Date: Sun, 25 Mar 2012 18:35:22 +0000 (+0100) Subject: unittest.mock: remove another piece of Python 2 specific code X-Git-Tag: v3.3.0a2~56^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fb5d0a78cfa39472aab8c9d81ec299a6eb351869;p=python unittest.mock: remove another piece of Python 2 specific code --- diff --git a/Lib/unittest/mock.py b/Lib/unittest/mock.py index 3cef550f9c..d73bd5385f 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__), )