This is an automated email from the git hooks/post-receive script. jforbes pushed a commit to branch master in repository kernel-tests. commit ee59e49c39aaa8e861532855e126fa447c713820 Author: Craig Rodrigues <rodrigc@xxxxxxxxxxx> Date: Sat Nov 14 16:47:45 2015 -0800 Use repr() instead of backticks. [PEP 3099] Backticks were removed as an alias for repr() in Python 3. See: https://www.python.org/dev/peps/pep-3099/ --- default/libhugetlbfs/libhugetlbfs/tests/run_tests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/default/libhugetlbfs/libhugetlbfs/tests/run_tests.py b/default/libhugetlbfs/libhugetlbfs/tests/run_tests.py index dc676b6..e84e29d 100755 --- a/default/libhugetlbfs/libhugetlbfs/tests/run_tests.py +++ b/default/libhugetlbfs/libhugetlbfs/tests/run_tests.py @@ -216,7 +216,7 @@ def clear_hpages(): cleaned up automatically and must be removed to free up the huge pages. """ for mount in mounts: - dir = mount + "/elflink-uid-" + `os.getuid()` + dir = mount + "/elflink-uid-" + repr(os.getuid()) for root, dirs, files in os.walk(dir, topdown=False): for name in files: os.remove(os.path.join(root, name)) @@ -459,7 +459,7 @@ def setup_shm_sysctl(limit): sysctls[f] = fh.read() fh.close() fh = open(f, "w") - fh.write(`limit`) + fh.write(repr(limit)) fh.close() print("set shmmax limit to %s" % limit) return sysctls -- To stop receiving notification emails like this one, please contact the administrator of this repository. _______________________________________________ kernel mailing list -- kernel@xxxxxxxxxxxxxxxxxxxxxxx To unsubscribe send an email to kernel-leave@xxxxxxxxxxxxxxxxxxxxxxx