X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/2d4198a095e193102daa2710c6b2baba7be7c9ce..404f868129e22cd627d350d61f74806f5b31a8ad:/sdk/python/tests/performance/test_a_sample.py diff --git a/sdk/python/tests/performance/test_a_sample.py b/sdk/python/tests/performance/test_a_sample.py index dff098403d..65015dc872 100644 --- a/sdk/python/tests/performance/test_a_sample.py +++ b/sdk/python/tests/performance/test_a_sample.py @@ -1,6 +1,13 @@ +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: Apache-2.0 + +from __future__ import print_function +from __future__ import absolute_import +from builtins import range import unittest -from performance_profiler import profiled +from .performance_profiler import profiled class PerformanceTestSample(unittest.TestCase): def foo(self): @@ -12,4 +19,4 @@ class PerformanceTestSample(unittest.TestCase): for i in range(0,2**20): j += i self.foo() - print 'Hello' + print('Hello')