mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-19 21:17:54 +00:00
Port to Python 3.
This commit is contained in:
parent
aef293fbca
commit
6196a1c650
@ -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
|
||||||
|
|
||||||
import struct, time
|
import struct, time
|
||||||
|
|
||||||
class LeaseInfo(object):
|
class LeaseInfo(object):
|
||||||
|
@ -38,6 +38,7 @@ PORTED_MODULES = [
|
|||||||
"allmydata.storage.common",
|
"allmydata.storage.common",
|
||||||
"allmydata.storage.crawler",
|
"allmydata.storage.crawler",
|
||||||
"allmydata.storage.expirer",
|
"allmydata.storage.expirer",
|
||||||
|
"allmydata.storage.lease",
|
||||||
"allmydata.storage.mutable",
|
"allmydata.storage.mutable",
|
||||||
"allmydata.test.common_py3",
|
"allmydata.test.common_py3",
|
||||||
"allmydata.uri",
|
"allmydata.uri",
|
||||||
|
Loading…
Reference in New Issue
Block a user