ยปCore Development>Code coverage>Lib/test/future_test1.py

Python code coverage for Lib/test/future_test1.py

#countcontent
1n/a"""This is a test"""
2n/a
3n/a# Import the name nested_scopes twice to trigger SF bug #407394 (regression).
4n/afrom __future__ import nested_scopes, nested_scopes
5n/a
6n/adef f(x):
7n/a def g(y):
8n/a return x + y
9n/a return g
10n/a
11n/aresult = f(2)(4)