MCPcopy Index your code
hub / github.com/sqlmapproject/sqlmap / copy

Method copy

thirdparty/bottle/bottle.py:1923–1925  ·  view source on GitHub ↗

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

(self)

Source from the content-addressed store, hash-verified

1921 return route[0] if route else None
1922
1923 def copy(self):
1924 """ Return a new :class:`Request` with a shallow :attr:`environ` copy. """
1925 return Request(self.environ.copy())
1926
1927 def get(self, value, default=None):
1928 return self.environ.get(value, default)

Callers 15

redirectFunction · 0.45
static_fileFunction · 0.45
runFunction · 0.45
__init__Method · 0.45
global_configMethod · 0.45
renderMethod · 0.45
renderMethod · 0.45
_includeMethod · 0.45
executeMethod · 0.45
wrapperFunction · 0.45
bottle.pyFile · 0.45
__init__Method · 0.45

Calls 1

RequestClass · 0.85

Tested by

no test coverage detected