[Zope3-checkins] CVS: Zope3/src/zope/app/form - widget.py:1.10.4.2
Garrett Smith
garrett at mojave-corp.com
Sat Feb 7 21:47:08 EST 2004
Update of /cvs-repository/Zope3/src/zope/app/form
In directory cvs.zope.org:/tmp/cvs-serv9962/src/zope/app/form
Modified Files:
Tag: ozzope-widgets-branch
widget.py
Log Message:
Setup for converting creating an interface for each widget.
=== Zope3/src/zope/app/form/widget.py 1.10.4.1 => 1.10.4.2 ===
--- Zope3/src/zope/app/form/widget.py:1.10.4.1 Sat Feb 7 21:11:52 2004
+++ Zope3/src/zope/app/form/widget.py Sat Feb 7 21:47:07 2004
@@ -30,7 +30,8 @@
implements(IWidget)
_prefix = 'field.'
- _data = None
+ _data_marker = object()
+ _data = _data_marker
visible = True
propertyNames = []
More information about the Zope3-Checkins
mailing list