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