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