(x)
| 21 | |
| 22 | def make_local_function(): |
| 23 | def g(x): |
| 24 | # this function checks that the globals are correctly handled and that |
| 25 | # the builtins are available |
| 26 | assert TEST_GLOBALS == "a test value" |
| 27 | return sum(range(10)) |
| 28 | |
| 29 | return g |
| 30 |
no outgoing calls
no test coverage detected