[Checkins] SVN: five.localsitemanager/branches/1.0/ - made zope.component 3.5 support official and adjusted tests

Yvo Schubbe y.2009 at wcm-solutions.de
Thu Mar 12 09:47:04 EDT 2009


Log message for revision 97986:
  - made zope.component 3.5 support official and adjusted tests

Changed:
  UU  five.localsitemanager/branches/1.0/CHANGES.txt
  U   five.localsitemanager/branches/1.0/setup.py
  U   five.localsitemanager/branches/1.0/src/five/localsitemanager/localsitemanager.txt

-=-
Modified: five.localsitemanager/branches/1.0/CHANGES.txt
===================================================================
--- five.localsitemanager/branches/1.0/CHANGES.txt	2009-03-12 13:38:44 UTC (rev 97985)
+++ five.localsitemanager/branches/1.0/CHANGES.txt	2009-03-12 13:47:03 UTC (rev 97986)
@@ -4,7 +4,7 @@
 1.1 - unreleased
 ----------------
 
-* 
+* Made zope.component 3.5 support official and adjusted tests.
 
 1.0 - 2008-11-18
 ----------------


Property changes on: five.localsitemanager/branches/1.0/CHANGES.txt
___________________________________________________________________
Added: svn:eol-style
   + native

Modified: five.localsitemanager/branches/1.0/setup.py
===================================================================
--- five.localsitemanager/branches/1.0/setup.py	2009-03-12 13:38:44 UTC (rev 97985)
+++ five.localsitemanager/branches/1.0/setup.py	2009-03-12 13:47:03 UTC (rev 97986)
@@ -33,7 +33,7 @@
       include_package_data = True,
       install_requires=[
         'setuptools',
-        'zope.component < 3.5dev',
+        'zope.component < 3.6dev',
       ],
       zip_safe = False,
       )

Modified: five.localsitemanager/branches/1.0/src/five/localsitemanager/localsitemanager.txt
===================================================================
--- five.localsitemanager/branches/1.0/src/five/localsitemanager/localsitemanager.txt	2009-03-12 13:38:44 UTC (rev 97985)
+++ five.localsitemanager/branches/1.0/src/five/localsitemanager/localsitemanager.txt	2009-03-12 13:47:03 UTC (rev 97986)
@@ -191,8 +191,8 @@
 And registeredUtilities():
 
     >>> list(sitemanager.registeredUtilities())
-    [UtilityRegistration(<PersistentComponents site>, ITestUtility, u'hello_world', <Utility TestUtility "test">, u''),
-     UtilityRegistration(<PersistentComponents site>, ITestUtility, u'aq_wrapped', <Utility AQTestUtility "test">, u'')]
+    [UtilityRegistration(<PersistentComponents site>, ITestUtility, u'hello_world', <Utility TestUtility "test">,... u''),
+     UtilityRegistration(<PersistentComponents site>, ITestUtility, u'aq_wrapped', <Utility AQTestUtility "test">,... u'')]
     >>> utils = [ r.component for r in sitemanager.registeredUtilities() ]
     >>> len(utils)
     2
@@ -343,9 +343,9 @@
 And registeredUtilities():
 
     >>> list(sitemanager_a.registeredUtilities())
-    [UtilityRegistration(<PersistentComponents /a>, ITestUtility, u'with_aq_chain', si_util_cped, u''),
-     UtilityRegistration(<PersistentComponents /a>, ITestUtility, u'aq_wrapped', <Utility AQTestUtility "test">, u''),
-     UtilityRegistration(<PersistentComponents /a>, ITestUtility, u'hello_world', <Utility TestUtility "test">, u'')]
+    [UtilityRegistration(<PersistentComponents /a>, ITestUtility, u'with_aq_chain', si_util_cped,... u''),
+     UtilityRegistration(<PersistentComponents /a>, ITestUtility, u'aq_wrapped', <Utility AQTestUtility "test">,... u''),
+     UtilityRegistration(<PersistentComponents /a>, ITestUtility, u'hello_world', <Utility TestUtility "test">,... u'')]
 
     >>> utils = [r.component for r in sitemanager_a.registeredUtilities()]
     >>> len(utils)



More information about the Checkins mailing list