[Zope3-checkins] CVS: Zope3/src/zope/schema - README.txt:1.2
Fred L. Drake, Jr.
fred@zope.com
Wed, 9 Apr 2003 16:32:27 -0400
Update of /cvs-repository/Zope3/src/zope/schema
In directory cvs.zope.org:/tmp/cvs-serv2125
Modified Files:
README.txt
Log Message:
Avoid using "klass" as the name of a variable storing a class object.
=== Zope3/src/zope/schema/README.txt 1.1 => 1.2 ===
--- Zope3/src/zope/schema/README.txt:1.1 Wed Apr 9 16:18:47 2003
+++ Zope3/src/zope/schema/README.txt Wed Apr 9 16:32:27 2003
@@ -148,10 +148,10 @@
named ``setImplements()`` as opposed to ``getImplements()``? This way
if you write::
- setImplements(klass, interface)
+ setImplements(cls, interface)
-it is obvious what you mean (as opposed to ``implements(klass,
-interface)`` which could mean *asking* if ``klass`` implements the
+it is obvious what you mean (as opposed to ``implements(cls,
+interface)`` which could mean *asking* if ``cls`` implements the
interface.
Clarify and clean up use cases