summaryrefslogtreecommitdiffstats
path: root/Lib/unittest/case.py
diff options
context:
space:
mode:
authorEzio Melotti <none@none>2011-04-03 14:39:19 (GMT)
committerEzio Melotti <none@none>2011-04-03 14:39:19 (GMT)
commitb7af620747a542c8173fc9d2fef59e1141e9ff20 (patch)
tree304809a7381969596398c6389d1ba6fa6a384d2b /Lib/unittest/case.py
parentc9a5272e8dc0aaa5d0ce63297b72292f4982db18 (diff)
parent361467e5226af652fdf08bdfe5737f51eba594e4 (diff)
downloadcpython-b7af620747a542c8173fc9d2fef59e1141e9ff20.zip
cpython-b7af620747a542c8173fc9d2fef59e1141e9ff20.tar.gz
cpython-b7af620747a542c8173fc9d2fef59e1141e9ff20.tar.bz2
#11282: merge with 3.2.
Diffstat (limited to 'Lib/unittest/case.py')
-rw-r--r--Lib/unittest/case.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/unittest/case.py b/Lib/unittest/case.py
index 4e47707..4d6b8f5 100644
--- a/Lib/unittest/case.py
+++ b/Lib/unittest/case.py
@@ -1110,8 +1110,7 @@ class TestCase(object):
return original_func(*args, **kwargs)
return deprecated_func
- # The fail* methods can be removed in 3.3, the 5 assert* methods will
- # have to stay around for a few more versions. See #9424.
+ # see #9424
assertEquals = _deprecate(assertEqual)
assertNotEquals = _deprecate(assertNotEqual)
assertAlmostEquals = _deprecate(assertAlmostEqual)