MCPcopy Index your code
hub / github.com/webpy/webpy / setdefault

Method setdefault

web/utils.py:1336–1337  ·  view source on GitHub ↗
(self, key, default=None)

Source from the content-addressed store, hash-verified

1334 return self.__dict__.popitem()
1335
1336 def setdefault(self, key, default=None):
1337 return self.__dict__.setdefault(key, default)
1338
1339 def update(self, *args, **kwargs):
1340 self.__dict__.update(*args, **kwargs)

Callers 8

__init__Method · 0.80
__init__Method · 0.80
wsgi.pyFile · 0.80
addMethod · 0.80
dictincrFunction · 0.80
inputFunction · 0.80
__init__Method · 0.80
__init__Method · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected