MCPcopy Index your code
hub / github.com/cirosantilli/linux-kernel-module-cheat / __init__

Method __init__

common.py:1122–1130  ·  view source on GitHub ↗
(self, *args, **kwargs)

Source from the content-addressed store, hash-verified

1120 '''
1121
1122 def __init__(self, *args, **kwargs):
1123 defaults = {
1124 'print_time': False,
1125 }
1126 if 'defaults' in kwargs:
1127 defaults.update(kwargs['defaults'])
1128 kwargs['defaults'] = defaults
1129 super().__init__(*args, **kwargs)
1130 self.tests = []
1131
1132 def run_test(self, run_obj, run_args=None, test_id=None):
1133 '''

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected