Port to Python 3.

This commit is contained in:
Itamar Turner-Trauring 2020-09-29 13:50:59 -04:00
parent 02acd9d2eb
commit 206f25d87e
2 changed files with 12 additions and 0 deletions

View File

@ -1,3 +1,14 @@
"""
Ported to Python 3.
"""
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
from __future__ import unicode_literals
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
import struct
import time

View File

@ -33,6 +33,7 @@ PORTED_MODULES = [
"allmydata.crypto.util",
"allmydata.hashtree",
"allmydata.immutable.happiness_upload",
"allmydata.immutable.downloader.share",
"allmydata.interfaces",
"allmydata.introducer.interfaces",
"allmydata.monitor",