mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-20 05:28:04 +00:00
Port to Python 3.
This commit is contained in:
parent
cf418b753a
commit
a29c03d34b
@ -1,5 +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
|
||||
from past.builtins import unicode
|
||||
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 os, sys
|
||||
from functools import (
|
||||
@ -189,7 +198,7 @@ class Basic(testutil.ReallyEqualMixin, unittest.TestCase):
|
||||
basedir,
|
||||
"client.port",
|
||||
)
|
||||
abs_basedir = fileutil.abspath_expanduser_unicode(unicode(basedir))
|
||||
abs_basedir = fileutil.abspath_expanduser_unicode(str(basedir))
|
||||
self.failUnlessIn(os.path.join(abs_basedir, "introducer.furl"), e.args[0])
|
||||
self.failUnlessIn(os.path.join(abs_basedir, "no_storage"), e.args[0])
|
||||
self.failUnlessIn(os.path.join(abs_basedir, "readonly_storage"), e.args[0])
|
||||
@ -434,9 +443,9 @@ class Basic(testutil.ReallyEqualMixin, unittest.TestCase):
|
||||
"""
|
||||
generic helper for following storage_dir tests
|
||||
"""
|
||||
assert isinstance(basedir, unicode)
|
||||
assert isinstance(storage_path, (unicode, type(None)))
|
||||
assert isinstance(expected_path, unicode)
|
||||
assert isinstance(basedir, str)
|
||||
assert isinstance(storage_path, (str, type(None)))
|
||||
assert isinstance(expected_path, str)
|
||||
os.mkdir(basedir)
|
||||
cfg_path = os.path.join(basedir, "tahoe.cfg")
|
||||
fileutil.write(
|
||||
|
@ -151,6 +151,7 @@ PORTED_TEST_MODULES = [
|
||||
"allmydata.test.test_base32",
|
||||
"allmydata.test.test_base62",
|
||||
"allmydata.test.test_checker",
|
||||
"allmydata.test.test_client",
|
||||
"allmydata.test.test_codec",
|
||||
"allmydata.test.test_common_util",
|
||||
"allmydata.test.test_configutil",
|
||||
|
Loading…
Reference in New Issue
Block a user