(self, *args, **kwargs)
| 87 | |
| 88 | @cherrypy.config(**{'request.query_string_encoding': 'latin1'}) |
| 89 | def default(self, *args, **kwargs): |
| 90 | return 'args: %s kwargs: %s' % (args, sorted(kwargs.items())) |
| 91 | |
| 92 | @cherrypy.expose |
| 93 | class ParamErrorsCallable(object): |