mirror of
https://github.com/python/cpython.git
synced 2025-07-12 13:55:34 +00:00
Merged revisions 78249 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r78249 | ezio.melotti | 2010-02-20 11:40:07 +0200 (Sat, 20 Feb 2010) | 1 line Remove e assertIs definitions and use correct assert* methods. ........
This commit is contained in:
parent
ef7d67214a
commit
a11865b8c6
6 changed files with 25 additions and 42 deletions
|
@ -7,12 +7,6 @@ import os
|
|||
|
||||
class BoolTest(unittest.TestCase):
|
||||
|
||||
def assertIs(self, a, b):
|
||||
self.assertTrue(a is b)
|
||||
|
||||
def assertIsNot(self, a, b):
|
||||
self.assertTrue(a is not b)
|
||||
|
||||
def test_subclass(self):
|
||||
try:
|
||||
class C(bool):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue