MCPcopy Create free account
hub / github.com/sqlmapproject/sqlmap / raw

Method raw

thirdparty/bottle/bottle.py:2689–2691  ·  view source on GitHub ↗

Return the header value as is (may be bytes or unicode).

(self, key, default=None)

Source from the content-addressed store, hash-verified

2687 return 'HTTP_' + key
2688
2689 def raw(self, key, default=None):
2690 """ Return the header value as is (may be bytes or unicode). """
2691 return self.environ.get(self._ekey(key), default)
2692
2693 def __getitem__(self, key):
2694 val = self.environ[self._ekey(key)]

Callers

nothing calls this directly

Calls 2

_ekeyMethod · 0.95
getMethod · 0.45

Tested by

no test coverage detected