Skip to content

Commit

Permalink
Fix inconsistent resolution order with zope.interface v5. (#13)
Browse files Browse the repository at this point in the history
Co-authored-by: Michael Howitz <mh@gocept.com>
  • Loading branch information
janjaapdriessen and Michael Howitz committed Sep 10, 2020
1 parent 390d05d commit 97d2d33
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
language: python
env:
global:
ZOPE_INTERFACE_STRICT_IRO: 1
python:
- 2.7
- 3.6
Expand Down
1 change: 1 addition & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@

- Add support for testing on Travis.

- Fix inconsistent resolution order with zope.interface v5.

4.0.0a2 (2013-08-27)
====================
Expand Down
2 changes: 1 addition & 1 deletion src/zope/session/http.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ class ICookieClientIdManager(IClientIdManager):
)


@implementer(IClientIdManager, ICookieClientIdManager)
@implementer(ICookieClientIdManager)
class CookieClientIdManager(zope.location.Location, Persistent):
"""
Default implementation of `ICookieClientIdManager`.
Expand Down
2 changes: 2 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ envlist =
commands =
zope-testrunner --test-path=src []
sphinx-build -b doctest -d {envdir}/.cache/doctrees docs {envdir}/.cache/doctest
setenv =
ZOPE_INTERFACE_STRICT_IRO = 1
extras =
test
docs
Expand Down

0 comments on commit 97d2d33

Please sign in to comment.