[Checkins] SVN: zope.interface/trunk/CHANGES.txt fix formatting so it outputs correctly with ReST

Kevin Teague kevin at bud.ca
Thu Apr 29 17:28:48 EDT 2010


Log message for revision 111596:
  fix formatting so it outputs correctly with ReST

Changed:
  U   zope.interface/trunk/CHANGES.txt

-=-
Modified: zope.interface/trunk/CHANGES.txt
===================================================================
--- zope.interface/trunk/CHANGES.txt	2010-04-29 21:27:59 UTC (rev 111595)
+++ zope.interface/trunk/CHANGES.txt	2010-04-29 21:28:48 UTC (rev 111596)
@@ -9,6 +9,7 @@
   ``Specification.changed``.  Thanks to Jacob Holm for the patch.
 
 - Added support for Python 3.1. Contributors:
+
     Lennart Regebro
     Martin v Löwis
     Thomas Lotze
@@ -17,13 +18,13 @@
   The 3.1 support is completely backwards compatible. However, the implements
   syntax used under Python 2.X does not work under 3.X, since it depends on
   how metaclasses are implemented and this has changed. Instead it now supports
-  a decorator syntax (also under Python 2.X):
+  a decorator syntax (also under Python 2.X)::
 
     class Foo:
         implements(IFoo)
         ...
 
-  can now also be written
+  can now also be written::
 
     @implementor(IFoo):
     class Foo:



More information about the checkins mailing list