Update of /cvsroot/webware/Webware/WebKit
In directory sc8-pr-cvs1:/tmp/cvs-serv30800/WebKit
Modified Files:
HTTPResponse.py
Log Message:
Removed duplicate (old) definition of setCookie
Index: HTTPResponse.py
===================================================================
RCS file: /cvsroot/webware/Webware/WebKit/HTTPResponse.py,v
retrieving revision 1.24
retrieving revision 1.25
diff -C2 -d -r1.24 -r1.25
*** HTTPResponse.py 10 Nov 2002 12:06:24 -0000 1.24
--- HTTPResponse.py 14 Dec 2002 20:27:06 -0000 1.25
***************
*** 142,152 ****
self.response().addCookie(cookie)
- def setCookie(self, name, value):
- """
- Sets the named cookie to a value.
- """
- assert self._committed==0, "Headers have already been sent"
- self.addCookie(Cookie(name, value))
-
def addCookie(self, cookie):
"""
--- 142,145 ----
|