(*args, **kwargs)
| 637 | module_cleanups.append((3, args, kwargs)) |
| 638 | |
| 639 | def module_cleanup_bad(*args, **kwargs): |
| 640 | raise CustomError('CleanUpExc') |
| 641 | |
| 642 | class Module(object): |
| 643 | unittest.addModuleCleanup(module_cleanup_good, 1, 2, 3, |
nothing calls this directly
no test coverage detected