thirdparty/google_appengine/google/appengine/ext/webapp/__init__.py
changeset 2273 e4cb9c53db3e
parent 828 f5fd65cc3bf3
child 2864 2e0b0af889be
equal deleted inserted replaced
2272:26491ee91e33 2273:e4cb9c53db3e
    94     query: the part of the URL after the '?'
    94     query: the part of the URL after the '?'
    95 
    95 
    96   You can access parsed query and POST values with the get() method; do not
    96   You can access parsed query and POST values with the get() method; do not
    97   parse the query string yourself.
    97   parse the query string yourself.
    98   """
    98   """
       
    99 
       
   100   request_body_tempfile_limit = 0
       
   101 
    99   uri = property(lambda self: self.url)
   102   uri = property(lambda self: self.url)
   100   query = property(lambda self: self.query_string)
   103   query = property(lambda self: self.query_string)
   101 
   104 
   102   def __init__(self, environ):
   105   def __init__(self, environ):
   103     """Constructs a Request object from a WSGI environment.
   106     """Constructs a Request object from a WSGI environment.