Port to Python 3.

This commit is contained in:
Itamar Turner-Trauring 2021-06-03 09:36:22 -04:00
parent cf68f55039
commit 77676c1648
2 changed files with 11 additions and 0 deletions

View File

@ -1,5 +1,15 @@
"""
Ported to Python 3.
"""
from __future__ import unicode_literals
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
from future.utils import PY2
if PY2:
from future.builtins import filter, map, zip, ascii, chr, hex, input, next, oct, open, pow, round, super, bytes, dict, list, object, range, str, max, min # noqa: F401
__all__ = [
"RunOptions",
"run",

View File

@ -113,6 +113,7 @@ PORTED_MODULES = [
"allmydata.scripts.tahoe_mkdir",
"allmydata.scripts.tahoe_mv",
"allmydata.scripts.tahoe_put",
"allmydata.scripts.tahoe_run",
"allmydata.scripts.types_",
"allmydata.stats",
"allmydata.storage_client",