[Checkins] SVN: zope.schema/trunk/ Prefer zope.testing.doctest over doctestunit.

Hanno Schlichting hannosch at hannosch.eu
Tue Dec 22 09:07:46 EST 2009


Log message for revision 106865:
  Prefer zope.testing.doctest over doctestunit.
  

Changed:
  U   zope.schema/trunk/CHANGES.txt
  U   zope.schema/trunk/setup.py
  U   zope.schema/trunk/src/zope/schema/tests/test_field.py

-=-
Modified: zope.schema/trunk/CHANGES.txt
===================================================================
--- zope.schema/trunk/CHANGES.txt	2009-12-22 12:55:28 UTC (rev 106864)
+++ zope.schema/trunk/CHANGES.txt	2009-12-22 14:07:45 UTC (rev 106865)
@@ -2,13 +2,15 @@
 CHANGES
 =======
 
-3.5.5 (unreleased)
+3.6.0 (unreleased)
 ------------------
 
-- Extend validation error to hold the field name
+- Prefer zope.testing.doctest over doctestunit.
 
+- Extend validation error to hold the field name.
+
 - Add FieldProperty class that uses Field.get and Field.set methods 
-  instead of storing directly on the instance __dict__
+  instead of storing directly on the instance __dict__.
 
 3.5.4 (2009-03-25)
 ------------------

Modified: zope.schema/trunk/setup.py
===================================================================
--- zope.schema/trunk/setup.py	2009-12-22 12:55:28 UTC (rev 106864)
+++ zope.schema/trunk/setup.py	2009-12-22 14:07:45 UTC (rev 106865)
@@ -27,7 +27,7 @@
     return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
 
 setup(name='zope.schema',
-      version = '3.5.5 dev',
+      version = '3.6.0dev',
       url='http://pypi.python.org/pypi/zope.schema',
       license='ZPL 2.1',
       description='zope.interface extension for defining data schemas',

Modified: zope.schema/trunk/src/zope/schema/tests/test_field.py
===================================================================
--- zope.schema/trunk/src/zope/schema/tests/test_field.py	2009-12-22 12:55:28 UTC (rev 106864)
+++ zope.schema/trunk/src/zope/schema/tests/test_field.py	2009-12-22 14:07:45 UTC (rev 106865)
@@ -21,7 +21,7 @@
 from zope.schema import Field, Text, Int
 from zope.schema.interfaces import ValidationError, RequiredMissing
 from zope.schema.interfaces import ConstraintNotSatisfied
-from zope.testing.doctestunit import DocTestSuite
+from zope.testing.doctest import DocTestSuite
 from zope.testing import renormalizing
 
 class FieldTestBase(TestCase):



More information about the checkins mailing list