(self)
| 2116 | pass |
| 2117 | |
| 2118 | def _collect_if_necessary(self): |
| 2119 | # we create no ref-cycles so in CPython no gc should be needed |
| 2120 | if sys.implementation.name != 'cpython': |
| 2121 | support.gc_collect() |
| 2122 | |
| 2123 | def test_finalize(self): |
| 2124 | def add(x,y,z): |
no outgoing calls
no test coverage detected