mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-19 13:07:56 +00:00
Port testing to Python 3
This commit is contained in:
parent
9bb30d2246
commit
4b6f84b821
0
newsfragments/3621.minor
Normal file
0
newsfragments/3621.minor
Normal 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
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user