Merge pull request #782 from tahoe-lafs/3383.storage-tests-run-py-3

Make storage tests run (not pass, run) on Python 3
This commit is contained in:
Itamar Turner-Trauring 2020-08-20 12:59:42 -04:00 committed by GitHub
commit fe62573f2f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 1316 additions and 1293 deletions

0
newsfragments/3383.minor Normal file
View File

View File

@ -1,4 +1,6 @@
from past.builtins import long
from zope.interface import Interface, Attribute
from twisted.plugin import (
IPlugin,

View File

@ -1,6 +1,9 @@
import os, time, struct
import cPickle as pickle
try:
import cPickle as pickle
except ImportError:
import pickle
from twisted.internet import reactor
from twisted.application import service
from allmydata.storage.common import si_b2a

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff