diff options
author | Michael Foord <michael@voidspace.org.uk> | 2012-03-25 19:35:22 +0100 |
---|---|---|
committer | Michael Foord <michael@voidspace.org.uk> | 2012-03-25 19:35:22 +0100 |
commit | fb5d0a78cfa39472aab8c9d81ec299a6eb351869 (patch) | |
tree | 1c46850a3de775a33c5f2fad6ff6e8f2394aba38 /Lib/unittest/mock.py | |
parent | 1ab27c6fde2a7a8f66bcc158ef74975e269c9389 (diff) | |
download | cpython-git-fb5d0a78cfa39472aab8c9d81ec299a6eb351869.tar.gz |
unittest.mock: remove another piece of Python 2 specific code
Diffstat (limited to 'Lib/unittest/mock.py')
-rw-r--r-- | Lib/unittest/mock.py | 2 |
1 files changed, 0 insertions, 2 deletions
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__), ) |