Python 2 is no longer supported upstream, so we really should default to
running Python 3 for all code here. Update most scripts to reference that.
Most code should have already been converted to be compatible with Python 3
and no further changes were made here, except for one fix needed in
`tests/digest_tree`. Note: Changes have not yet been much tested, so there
could possibly be bugs.
A few scripts in `contrib/` are not updated as these would need some extra
work; leave that for the future.
Python 2 compatibility code could probably be removed (the `six` module and
`__future__` imports), but also leave that for future work to keep this
commit small.
-#!/usr/bin/python
+#!/usr/bin/python3
#
# Cumulus: Efficient Filesystem Backup to the Cloud
# Copyright (C) 2008, 2010 The Cumulus Developers
-#!/usr/bin/python
+#!/usr/bin/python3
#
# Cumulus: Efficient Filesystem Backup to the Cloud
# Copyright (C) 2008 The Cumulus Developers
-#!/usr/bin/python
+#!/usr/bin/python3
#
# Cumulus: Efficient Filesystem Backup to the Cloud
# Copyright (C) 2012 The Cumulus Developers
-#!/usr/bin/python
+#!/usr/bin/python3
#
# Cumulus: Efficient Filesystem Backup to the Cloud
# Copyright (C) 2013 The Cumulus Developers
-#!/usr/bin/python
+#!/usr/bin/python3
# coding: utf-8
#
# Cumulus: Efficient Filesystem Backup to the Cloud
-#!/usr/bin/python
+#!/usr/bin/python3
#
# Cumulus: Efficient Filesystem Backup to the Cloud
# Copyright (C) 2012 The Cumulus Developers
if stat.S_ISREG(st.st_mode):
digest = hashlib.sha256()
BUF_SIZE = 1 << 16
- f = open(path, "r")
+ f = open(path, "rb")
while True:
buf = f.read(BUF_SIZE)
if not buf: break
root = "."
os.chdir(root)
for file in dump_tree("."):
- print " ".join(map(str, file))
+ print(" ".join(map(str, file)))
VALGRIND="valgrind --tool=memcheck --leak-check=full --log-file=$TMP_DIR/valgrind.log"
# Python interpreter to test with.
-PYTHON="${PYTHON:-python2}"
+PYTHON="${PYTHON:-python3}"
log_action() {
echo