(self, *args, **kwargs)
| 55 | |
| 56 | @cherrypy.expose |
| 57 | def reqparams(self, *args, **kwargs): |
| 58 | return b', '.join( |
| 59 | [': '.join((k, v)).encode('utf8') |
| 60 | for k, v in sorted(cherrypy.request.params.items())] |
| 61 | ) |
| 62 | |
| 63 | @cherrypy.expose |
| 64 | @cherrypy.config(**{ |