Support Python 2 and 3 in test script
authorMichael Pratt <michael@pratt.im>
Thu, 7 Aug 2014 04:51:48 +0000 (00:51 -0400)
committerarc <arc@cthulhu>
Thu, 7 Aug 2014 04:51:48 +0000 (00:51 -0400)
commite9ccadebed4a07626b2aa8108fde0634d96827d4
treed0fdd30428bb607776aad03c42e4c6bf1483dcde
parent7d41ce23a757b56d6b4c96d741f9a4b175606a70
Support Python 2 and 3 in test script

Add Python 3 support to the Python test.py script.

The print function is used in place of the print statement.

The urlopen function has been moved to urllib.request in Python 3, so
attempt to import it from either location.

TestCase.assert_() has been deprecated in place of
TestCase.assertTrue().

The tests all pass in both Python 2 and 3.
modules/python/test/test.py