Port testing to Python 3

This commit is contained in:
Chad Whitacre 2021-02-28 12:19:47 -05:00
parent 9bb30d2246
commit 4b6f84b821
2 changed files with 12 additions and 2 deletions

0
newsfragments/3621.minor Normal file
View File

View File

@ -6,10 +6,20 @@
# This file is part of Tahoe-LAFS. # This file is part of Tahoe-LAFS.
# #
# See the docs/about.rst file for licensing information. # See the docs/about.rst file for licensing information.
"""Test-helpers for clients that use the WebUI.
Ported to Python 3.
""" """
Test-helpers for clients that use the WebUI. 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 hashlib import hashlib