Port to Python 3.

This commit is contained in:
Itamar Turner-Trauring 2021-04-06 10:49:00 -04:00
parent 3429f8bf03
commit 315bb672d1
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 re

View File

@ -110,6 +110,7 @@ PORTED_MODULES = [
"allmydata.test.python3_tests",
"allmydata.test.storage_plugin",
"allmydata.test.web",
"allmydata.test.web.common",
"allmydata.test.web.matchers",
"allmydata.testing",
"allmydata.testing.web",