[Zope-Checkins] CVS: Zope/lib/python/ZPublisher - BaseRequest.py:1.45
Shane Hathaway
shane@digicool.com
Fri, 21 Dec 2001 15:36:21 -0500
Update of /cvs-repository/Zope/lib/python/ZPublisher
In directory cvs.zope.org:/tmp/cvs-serv11675
Modified Files:
BaseRequest.py
Log Message:
Fixed missing default arg value
=== Zope/lib/python/ZPublisher/BaseRequest.py 1.44 => 1.45 ===
set=__setitem__
- def get(self, key, default):
+ def get(self, key, default=None):
"""Get a variable value
Return a value for the required variable name.