Print fixes for Python 3

This commit is contained in:
Mike Croucher 2015-02-27 19:03:45 +00:00
parent 4c3d68b761
commit 09c93e62d0
8 changed files with 90 additions and 90 deletions

View file

@ -127,8 +127,8 @@ class Test(unittest.TestCase):
self.assertEqual(self.view.size, 5)
def test_print(self):
print self.param_index
print self.view
print(self.param_index)
print(self.view)
if __name__ == "__main__":
#import sys;sys.argv = ['', 'Test.test_index_view']