Browse Source

print() is a function in Python 3

pull/110/head
Christian Clauss 5 years ago
committed by GitHub
parent
commit
62916a79e2
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      run_tests.py

5
run_tests.py

@ -23,8 +23,7 @@ if __name__ == '__main__':
# Run the tests # Run the tests
for fname in test_files: for fname in test_files:
print 'Running "%s"...'%(os.path.splitext(os.path.split(fname)[-1])[0])
print('Running "%s"...'%(os.path.splitext(os.path.split(fname)[-1])[0]))
doctest.testfile(fname) doctest.testfile(fname)
print 'Finished!'
print('Finished!')
Loading…
Cancel
Save