mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-28 00:38:52 +00:00
Ported to Python 3.
This commit is contained in:
parent
e4734468e5
commit
836d41a92d
@ -1,3 +1,16 @@
|
|||||||
|
"""
|
||||||
|
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
|
||||||
|
|
||||||
from twisted.trial import unittest
|
from twisted.trial import unittest
|
||||||
from allmydata.mutable.common import NeedMoreDataError, UncoordinatedWriteError
|
from allmydata.mutable.common import NeedMoreDataError, UncoordinatedWriteError
|
||||||
|
|
||||||
|
@ -95,6 +95,7 @@ PORTED_MODULES = [
|
|||||||
PORTED_TEST_MODULES = [
|
PORTED_TEST_MODULES = [
|
||||||
"allmydata.test.mutable.test_datahandle",
|
"allmydata.test.mutable.test_datahandle",
|
||||||
"allmydata.test.mutable.test_different_encoding",
|
"allmydata.test.mutable.test_different_encoding",
|
||||||
|
"allmydata.test.mutable.test_exceptions",
|
||||||
"allmydata.test.mutable.test_filehandle",
|
"allmydata.test.mutable.test_filehandle",
|
||||||
"allmydata.test.mutable.test_filenode",
|
"allmydata.test.mutable.test_filenode",
|
||||||
"allmydata.test.test_abbreviate",
|
"allmydata.test.test_abbreviate",
|
||||||
|
Loading…
Reference in New Issue
Block a user