webapp-improved icon indicating copy to clipboard operation
webapp-improved copied to clipboard

Taking Google App Engine's webapp to the next level!

Results 5 webapp-improved issues
Sort by recently updated
recently updated
newest added

The `request_body_tempfile_limit` key is only used in a single place in webapp2: ``` bash # grep -r request_body_tempfile_limit webob/request.py: request_body_tempfile_limit = 10*1024 webob/request.py: ``self.request_body_tempfile_limit`` webob/request.py: tempfile_limit = self.request_body_tempfile_limit webapp2.py: request_body_tempfile_limit...

I ran into some difficulty with webapp2 because of the way RequestHandler.**init** worked. Basically there was no way to have a derived class from RequestHandler due to the call of...

`bytes`, `str`, `unicode`, and `basestring` mean different things to Python 2.5, 2.6, and 3.x. Python 2.5 - `bytes` is not available. - `str` is a byte string. - `unicode` converts...