SVN: r26045 - trunk/quixote
David Binger <dbinger-fVcApmY9cLvQ3/1i3zOLAti2O/[email protected]> Wed, 09 Feb 2005 20:52:05 -0500
| Newsgroups | gmane.comp.web.quixote.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: dbinger
Date: 2005-02-09 20:52:05 -0500 (Wed, 09 Feb 2005)
New Revision: 26045
Modified:
trunk/quixote/http_request.py
Log:
Add HTTPRequest.get_fields()
Modified: trunk/quixote/http_request.py
===================================================================
--- trunk/quixote/http_request.py 2005-02-10 01:34:24 UTC (rev 26044)
+++ trunk/quixote/http_request.py 2005-02-10 01:52:05 UTC (rev 26045)
@@ -254,6 +254,9 @@
def get_field(self, name, default=None):
return self.form.get(name, default)
+ def get_fields(self):
+ return self.form
+
def get_method(self):
"""Returns the HTTP method for this request
"""