Staging
v0.5.1
https://github.com/python/cpython
Revision e8803e75244efca68d0843002f27209383837fed authored by Antoine Pitrou on 20 November 2010, 19:35:42 UTC, committed by Antoine Pitrou on 20 November 2010, 19:35:42 UTC
1 parent bbd7250
Raw File
Tip revision: e8803e75244efca68d0843002f27209383837fed authored by Antoine Pitrou on 20 November 2010, 19:35:42 UTC
Issue #8340: document bytearray in Python 2.7.
Tip revision: e8803e7
badsyntax_future3.py
"""This is a test"""
from __future__ import nested_scopes
from __future__ import rested_snopes

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

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