[Zope3-checkins] CVS: Zope3/lib/python/Zope/ContextWrapper - SimpleMethodWrapper.py:1.5

Steve Alexander steve@cat-box.net
Tue, 12 Nov 2002 05:57:34 -0500


Update of /cvs-repository/Zope3/lib/python/Zope/ContextWrapper
In directory cvs.zope.org:/tmp/cvs-serv23886

Modified Files:
	SimpleMethodWrapper.py 
Log Message:
Removed extraneous import.
Added link to wiki documentation.
Refactored unit tests to avoid the need for noop tests for classic classes.


=== Zope3/lib/python/Zope/ContextWrapper/SimpleMethodWrapper.py 1.4 => 1.5 ===
--- Zope3/lib/python/Zope/ContextWrapper/SimpleMethodWrapper.py:1.4	Mon Nov 11 14:40:43 2002
+++ Zope3/lib/python/Zope/ContextWrapper/SimpleMethodWrapper.py	Tue Nov 12 05:57:33 2002
@@ -18,8 +18,12 @@
 #
 # The facilities here work by adding markers on methods or properties
 # that a custom wrapper class looks for.  We rely on the custom
-# wrapper class's getattr to rebind things on the way out.
+# wrapper class's __getattribute__ to rebind things on the way out.
 # 
+# For further discission, see this wiki page (all on one line):
+# http://dev.zope.org/Wikis/DevSite/Projects/ComponentArchitecture/...
+# Zope.ContextWrapper.ContextMethod
+#
 ##############################################################################