Port to Python 3.

This commit is contained in:
Itamar Turner-Trauring 2021-01-12 11:44:27 -05:00
parent c2d69c5309
commit 7e5e329138
2 changed files with 4 additions and 2 deletions

View File

@ -113,6 +113,7 @@ PORTED_MODULES = [
"allmydata.util.spans",
"allmydata.util.statistics",
"allmydata.util.time_format",
"allmydata.web.logs",
"allmydata.webish",
]

View File

@ -1,3 +1,6 @@
"""
Ported to Python 3.
"""
from __future__ import (
print_function,
unicode_literals,
@ -5,8 +8,6 @@ from __future__ import (
division,
)
from future.builtins import str
import json
from autobahn.twisted.resource import WebSocketResource