summaryrefslogtreecommitdiffstats
path: root/Lib/unittest
diff options
context:
space:
mode:
authorMichael Foord <michael@voidspace.org.uk>2012-03-25 18:35:22 (GMT)
committerMichael Foord <michael@voidspace.org.uk>2012-03-25 18:35:22 (GMT)
commitfb5d0a78cfa39472aab8c9d81ec299a6eb351869 (patch)
tree1c46850a3de775a33c5f2fad6ff6e8f2394aba38 /Lib/unittest
parent1ab27c6fde2a7a8f66bcc158ef74975e269c9389 (diff)
downloadcpython-fb5d0a78cfa39472aab8c9d81ec299a6eb351869.zip
cpython-fb5d0a78cfa39472aab8c9d81ec299a6eb351869.tar.gz
cpython-fb5d0a78cfa39472aab8c9d81ec299a6eb351869.tar.bz2
unittest.mock: remove another piece of Python 2 specific code
Diffstat (limited to 'Lib/unittest')
-rw-r--r--Lib/unittest/mock.py2
1 files changed, 0 insertions, 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__),
)