(self)
| 2099 | pass |
| 2100 | |
| 2101 | def _collect_if_necessary(self): |
| 2102 | # we create no ref-cycles so in CPython no gc should be needed |
| 2103 | if sys.implementation.name != 'cpython': |
| 2104 | support.gc_collect() |
| 2105 | |
| 2106 | def test_finalize(self): |
| 2107 | def add(x,y,z): |
no outgoing calls
no test coverage detected