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

Method __getattr__

thirdparty/bottle/bottle.py:2621–2625  ·  view source on GitHub ↗
(self, name, default=unicode())

Source from the content-addressed store, hash-verified

2619 return default
2620
2621 def __getattr__(self, name, default=unicode()):
2622 # Without this guard, pickle generates a cryptic TypeError:
2623 if name.startswith('__') and name.endswith('__'):
2624 return super(FormsDict, self).__getattr__(name)
2625 return self.getunicode(name, default=default)
2626
2627class HeaderDict(MultiDict):
2628 """ A case-insensitive version of :class:`MultiDict` that defaults to

Callers

nothing calls this directly

Calls 1

getunicodeMethod · 0.95

Tested by

no test coverage detected