MCPcopy
hub / github.com/cherrypy/cherrypy / kwargs

Method kwargs

cherrypy/_cpdispatch.py:223–228  ·  view source on GitHub ↗

Page handler kwargs (with cherrypy.request.params copied in).

(self)

Source from the content-addressed store, hash-verified

221
222 @property
223 def kwargs(self):
224 """Page handler kwargs (with cherrypy.request.params copied in)."""
225 kwargs = cherrypy.serving.request.params.copy()
226 if self._kwargs:
227 kwargs.update(self._kwargs)
228 return kwargs
229
230 @kwargs.setter
231 def kwargs(self, kwargs):

Callers

nothing calls this directly

Calls 1

updateMethod · 0.45

Tested by

no test coverage detected