Staging
v0.5.1
https://github.com/python/cpython
Revision 8e2aa88a40c0c7611a04696d1789da159e40d7f7 authored by Serhiy Storchaka on 24 March 2015, 16:45:23 UTC, committed by Serhiy Storchaka on 24 March 2015, 16:45:23 UTC
1 parent 72bd327
Raw File
Tip revision: 8e2aa88a40c0c7611a04696d1789da159e40d7f7 authored by Serhiy Storchaka on 24 March 2015, 16:45:23 UTC
Issue #23741: Slightly refactor the pprint module to make it a little more
Tip revision: 8e2aa88
badsyntax_future5.py
"""This is a test"""
from __future__ import nested_scopes
import foo
from __future__ import nested_scopes


def f(x):
    def g(y):
        return x + y
    return g

result = f(2)(4)
back to top