Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
ZODB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kirill Smelkov
ZODB
Commits
47497fc1
Commit
47497fc1
authored
May 20, 2020
by
Jan-Jaap Driessen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix inconsistent resolution order with zope.interface v5.
parent
bb9bf539
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
2 deletions
+5
-2
CHANGES.rst
CHANGES.rst
+2
-0
src/ZODB/FileStorage/FileStorage.py
src/ZODB/FileStorage/FileStorage.py
+1
-1
src/ZODB/blob.py
src/ZODB/blob.py
+0
-1
tox.ini
tox.ini
+2
-0
No files found.
CHANGES.rst
View file @
47497fc1
...
...
@@ -40,6 +40,8 @@
- Fix tests with transaction 3.0.
- Fix inconsistent resolution order with zope.interface v5.
5.5.1 (2018-10-25)
==================
...
...
src/ZODB/FileStorage/FileStorage.py
View file @
47497fc1
...
...
@@ -127,12 +127,12 @@ class TempFormatter(FileStorageFormatter):
self
.
_file
=
afile
@
implementer
(
IStorage
,
IStorageRestoreable
,
IStorageIteration
,
IStorageUndoable
,
IStorageCurrentRecordIteration
,
IExternalGC
,
IStorage
,
)
class
FileStorage
(
FileStorageFormatter
,
...
...
src/ZODB/blob.py
View file @
47497fc1
...
...
@@ -733,7 +733,6 @@ class BlobStorageMixin(object):
return
self
.
fshelper
.
temp_dir
@
zope
.
interface
.
implementer
(
ZODB
.
interfaces
.
IBlobStorage
)
class
BlobStorage
(
BlobStorageMixin
):
"""A wrapper/proxy storage to support blobs.
"""
...
...
tox.ini
View file @
47497fc1
...
...
@@ -13,6 +13,8 @@ commands =
zope-testrunner
--test-path
=
src []
deps
=
.
[test]
setenv
=
ZOPE_INTERFACE_STRICT_IRO
=
1
[testenv:coverage]
basepython
=
python3.7
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment