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

Method push

thirdparty/bottle/bottle.py:2996–3001  ·  view source on GitHub ↗

Add a new :class:`Bottle` instance to the stack

(self, value=None)

Source from the content-addressed store, hash-verified

2994 return self.default
2995
2996 def push(self, value=None):
2997 """ Add a new :class:`Bottle` instance to the stack """
2998 if not isinstance(value, Bottle):
2999 value = Bottle()
3000 self.append(value)
3001 return value
3002 new_app = push
3003
3004 @property

Callers 3

defaultMethod · 0.95
__enter__Method · 0.80
load_appFunction · 0.80

Calls 2

BottleClass · 0.85
appendMethod · 0.45

Tested by

no test coverage detected