327
310
def add_cookie(self, cookie, value=None, **attributes):
328
311
"""Inserts a cookie into this request object's headers."""
332
mod_python.Cookie.add_cookie(self.apache_req, cookie, value, **attributes)
315
Cookie.add_cookie(self.apache_req, cookie, value, **attributes)
335
318
"""Returns a mod_python Session object for this request.