[Zope-Checkins] CVS: Zope3/lib/python/Zope/Publisher/VFS - VFSRequest.py:1.1.4.3
Jim Fulton
jim@zope.com
Mon, 10 Jun 2002 15:34:57 -0400
Update of /cvs-repository/Zope3/lib/python/Zope/Publisher/VFS
In directory cvs.zope.org:/tmp/cvs-serv5490/lib/python/Zope/Publisher/VFS
Modified Files:
Tag: Zope-3x-branch
VFSRequest.py
Log Message:
Implemented
http://dev.zope.org/Wikis/DevSite/Projects/ComponentArchitecture/IContainerPythonification
Along the way:
- Converted most uses of has_key to use in.
- Fixed a bug in Interface names and namesAndDescriptions methods
that caused base class attributes to be missed.
=== Zope3/lib/python/Zope/Publisher/VFS/VFSRequest.py 1.1.4.2 => 1.1.4.3 ===
'See Zope.Publisher.IPublisherRequest.IPublisherRequest'
- if self._environ.has_key('command'):
+ if 'command' in self._environ:
self.method = self._environ['command']
#