MCPcopy
hub / github.com/pyload/pyload / copy

Method copy

module/lib/bottle.py:1138–1140  ·  view source on GitHub ↗

Return a new :class:`Request` with a shallow :attr:`environ` copy.

(self)

Source from the content-addressed store, hash-verified

1136 return route[0] if route else None
1137
1138 def copy(self):
1139 """ Return a new :class:`Request` with a shallow :attr:`environ` copy. """
1140 return Request(self.environ.copy())
1141
1142 def __getitem__(self, key): return self.environ[key]
1143 def __delitem__(self, key): self[key] = ""; del(self.environ[key])

Callers 15

__init__Method · 0.45
runFunction · 0.45
__init__Method · 0.45
global_configMethod · 0.45
renderMethod · 0.45
renderMethod · 0.45
executeMethod · 0.45
wrapperFunction · 0.45
decryptMethod · 0.45
load_imageMethod · 0.45
run_file_queryMethod · 0.45
jquery_callMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected