Changeset 391 for python/trunk/Lib/test/test_future4.py
- Timestamp:
- Mar 19, 2014, 11:31:01 PM (11 years ago)
- Location:
- python/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
python/trunk
-
Property svn:mergeinfo
set to
/python/vendor/Python-2.7.6 merged eligible /python/vendor/current merged eligible
-
Property svn:mergeinfo
set to
-
python/trunk/Lib/test/test_future4.py
r2 r391 6 6 class TestFuture(unittest.TestCase): 7 7 def assertType(self, obj, typ): 8 self.assert _(type(obj) is typ,8 self.assertTrue(type(obj) is typ, 9 9 "type(%r) is %r, not %r" % (obj, type(obj), typ)) 10 10
Note:
See TracChangeset
for help on using the changeset viewer.