(x)
| 156 | |
| 157 | |
| 158 | def spam_CN(x): |
| 159 | a = 1 |
| 160 | def eggs_closure_N(y): |
| 161 | def ham_C_nested(z): |
| 162 | return None, z |
| 163 | return ham_C_nested, y, a, x |
| 164 | return eggs_closure_N, a, x |
| 165 | |
| 166 | |
| 167 | def spam_CC(x): |
no outgoing calls
no test coverage detected
searching dependent graphs…