(self)
| 33 | class My_Class: |
| 34 | class_var = 1 |
| 35 | def __init__(self): |
| 36 | self.var=2 |
| 37 | data2 = [(1,2), [3,4], {5,6}, frozenset((7,8)), {9:'9', 10:'10'} , bytes('11', 'utf-8'), bytearray('12', 'utf-8'), My_Class(), My_Class] |
| 38 | restore = config.embedded_types.copy() |
| 39 | config.embedded_types.clear() |
nothing calls this directly
no outgoing calls
no test coverage detected