[Checkins] SVN: zope.copypastemove/trunk/ use zope.container instead of zope.app.container

Wolfgang Schnerring wosc at wosc.de
Thu Jan 29 09:55:57 EST 2009


Log message for revision 95443:
  use zope.container instead of zope.app.container
  

Changed:
  U   zope.copypastemove/trunk/CHANGES.txt
  U   zope.copypastemove/trunk/README.txt
  U   zope.copypastemove/trunk/setup.py
  U   zope.copypastemove/trunk/src/zope/copypastemove/__init__.py
  U   zope.copypastemove/trunk/src/zope/copypastemove/tests/test_rename.py

-=-
Modified: zope.copypastemove/trunk/CHANGES.txt
===================================================================
--- zope.copypastemove/trunk/CHANGES.txt	2009-01-29 14:47:54 UTC (rev 95442)
+++ zope.copypastemove/trunk/CHANGES.txt	2009-01-29 14:55:57 UTC (rev 95443)
@@ -4,6 +4,7 @@
 3.4.2 (unreleased)
 ------------------
 
+* Use zope.container instead of zope.app.container.
 
 3.4.1 (2009-01-26)
 ------------------

Modified: zope.copypastemove/trunk/README.txt
===================================================================
--- zope.copypastemove/trunk/README.txt	2009-01-29 14:47:54 UTC (rev 95442)
+++ zope.copypastemove/trunk/README.txt	2009-01-29 14:55:57 UTC (rev 95443)
@@ -14,4 +14,4 @@
 * ``IPrincipalClipboard``
 
 as well as standard implementations for containers and contained
-objects as known from the ``zope.app.container`` package.
+objects as known from the ``zope.container`` package.

Modified: zope.copypastemove/trunk/setup.py
===================================================================
--- zope.copypastemove/trunk/setup.py	2009-01-29 14:47:54 UTC (rev 95442)
+++ zope.copypastemove/trunk/setup.py	2009-01-29 14:55:57 UTC (rev 95443)
@@ -43,6 +43,7 @@
       extras_require=dict(
           test=['zope.app.testing', 'zope.app.principalannotation']),
       install_requires=['setuptools',
+                        'zope.container',
                         'zope.interface',
                         'zope.exceptions',
                         'zope.component',

Modified: zope.copypastemove/trunk/src/zope/copypastemove/__init__.py
===================================================================
--- zope.copypastemove/trunk/src/zope/copypastemove/__init__.py	2009-01-29 14:47:54 UTC (rev 95442)
+++ zope.copypastemove/trunk/src/zope/copypastemove/__init__.py	2009-01-29 14:55:57 UTC (rev 95443)
@@ -34,11 +34,11 @@
 from zope.copypastemove.interfaces import IPrincipalClipboard
 from zope.copypastemove.interfaces import IItemNotFoundError
 
-from zope.app.container.sample import SampleContainer
-from zope.app.container.interfaces import IContainer, IOrderedContainer
-from zope.app.container.interfaces import IContained
-from zope.app.container.interfaces import INameChooser
-from zope.app.container.constraints import checkObject
+from zope.container.sample import SampleContainer
+from zope.container.interfaces import IContainer, IOrderedContainer
+from zope.container.interfaces import IContained
+from zope.container.interfaces import INameChooser
+from zope.container.constraints import checkObject
 
 class ItemNotFoundError(LookupError):
     implements(IItemNotFoundError)

Modified: zope.copypastemove/trunk/src/zope/copypastemove/tests/test_rename.py
===================================================================
--- zope.copypastemove/trunk/src/zope/copypastemove/tests/test_rename.py	2009-01-29 14:47:54 UTC (rev 95442)
+++ zope.copypastemove/trunk/src/zope/copypastemove/tests/test_rename.py	2009-01-29 14:55:57 UTC (rev 95443)
@@ -19,7 +19,7 @@
 
 from zope.testing.doctestunit import DocTestSuite
 from zope.component import testing, eventtesting
-from zope.app.container.tests.placelesssetup import PlacelessSetup
+from zope.container.testing import PlacelessSetup
 
 container_setup = PlacelessSetup()
 



More information about the Checkins mailing list