Commit 03bc90c3 authored by Dan Korostelev's avatar Dan Korostelev

Remove long-time deprecated IContentContainer class

parent de2c9041
...@@ -5,7 +5,7 @@ CHANGES ...@@ -5,7 +5,7 @@ CHANGES
3.7.0 (unreleased) 3.7.0 (unreleased)
------------------ ------------------
- ... - Remove long-time deprecated IContentContainer class.
3.6.2 (2008-10-21) 3.6.2 (2008-10-21)
------------------ ------------------
......
...@@ -64,7 +64,6 @@ setup(name='zope.app.container', ...@@ -64,7 +64,6 @@ setup(name='zope.app.container',
'zope.app.file']), 'zope.app.file']),
install_requires=['setuptools', install_requires=['setuptools',
'zope.interface', 'zope.interface',
'zope.deprecation',
'zope.app.publisher', 'zope.app.publisher',
'zope.cachedescriptors', 'zope.cachedescriptors',
'zope.dottedname', 'zope.dottedname',
......
...@@ -17,8 +17,6 @@ $Id$ ...@@ -17,8 +17,6 @@ $Id$
""" """
__docformat__ = 'restructuredtext' __docformat__ = 'restructuredtext'
from zope.deprecation import deprecated
from zope.interface import Interface, Attribute, Invalid from zope.interface import Interface, Attribute, Invalid
from zope.component.interfaces import IView, IObjectEvent from zope.component.interfaces import IView, IObjectEvent
from zope.interface.common.mapping import IItemMapping from zope.interface.common.mapping import IItemMapping
...@@ -26,11 +24,6 @@ from zope.interface.common.mapping import IReadMapping, IEnumerableMapping ...@@ -26,11 +24,6 @@ from zope.interface.common.mapping import IReadMapping, IEnumerableMapping
from zope.location.interfaces import ILocation from zope.location.interfaces import ILocation
from zope.lifecycleevent.interfaces import IObjectModifiedEvent from zope.lifecycleevent.interfaces import IObjectModifiedEvent
deprecated('IContentContainer',
'This interface has been deprecated. '
'Check the "containerViews" zcml directive. '
'The reference will be gone in 3.3')
class DuplicateIDError(KeyError): class DuplicateIDError(KeyError):
pass pass
...@@ -129,10 +122,6 @@ class IItemWriteContainer(IWriteContainer, IItemContainer): ...@@ -129,10 +122,6 @@ class IItemWriteContainer(IWriteContainer, IItemContainer):
"""A write container that also supports minimal reads.""" """A write container that also supports minimal reads."""
class IContentContainer(IWriteContainer):
"""Containers (like folders) that contain ordinary content."""
class IContainer(IReadContainer, IWriteContainer): class IContainer(IReadContainer, IWriteContainer):
"""Readable and writable content container.""" """Readable and writable content container."""
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment