[Zope3-checkins] 
	SVN: Zope3/branches/isarsprint-dav-work/src/zope/app/dav/opaquenamespaces.py
	Grmbl,
	auto-props still don't work for me. Set them manually. Also update
	the
    Martijn Pieters 
    mj at zopatista.com
       
    Wed Oct 13 06:23:18 EDT 2004
    
    
  
Log message for revision 28057:
  Grmbl, auto-props still don't work for me. Set them manually. Also update the
  doc to something more relevant instead of the C&P text I inherited, and clean
  up the keyword arguments to the interger sequencer.
  
Changed:
  UU  Zope3/branches/isarsprint-dav-work/src/zope/app/dav/opaquenamespaces.py
-=-
Modified: Zope3/branches/isarsprint-dav-work/src/zope/app/dav/opaquenamespaces.py
===================================================================
--- Zope3/branches/isarsprint-dav-work/src/zope/app/dav/opaquenamespaces.py	2004-10-13 09:59:47 UTC (rev 28056)
+++ Zope3/branches/isarsprint-dav-work/src/zope/app/dav/opaquenamespaces.py	2004-10-13 10:23:16 UTC (rev 28057)
@@ -11,9 +11,12 @@
 # FOR A PARTICULAR PURPOSE.
 #
 ##############################################################################
-"""Attribute Annotations implementation 
+"""DAV Opaque properties implementation details
 
-$Id: attribute.py 26632 2004-07-19 14:56:53Z jim $
+Opaque properties are arbitrary propterties set trhough DAV and which have no
+special meaning to the Zope application.
+
+$Id$
 """
 __docformat__ = 'restructuredtext'
 
@@ -160,7 +163,7 @@
     return DOMTransformer(element).makeStandalone()
 
 
-def _numberGenerator(i = 0):
+def _numberGenerator(i=0):
     while True:
         yield i
         i += 1
Property changes on: Zope3/branches/isarsprint-dav-work/src/zope/app/dav/opaquenamespaces.py
___________________________________________________________________
Name: svn:keywords
   + id
Name: svn:eol-style
   + native
    
    
More information about the Zope3-Checkins
mailing list