Staging
v0.5.1
Revision cb7f6544f09d38eb73f9894426f8cca16b9bf5b1 authored by cvs2svn on 26 March 2002, 13:47:16 UTC, committed by cvs2svn on 26 March 2002, 13:47:16 UTC
1 parent 8b9a781
Raw File
test_future3.py
from __future__ import nested_scopes
from __future__ import division
from __future__ import nested_scopes

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


print f(2)(5)
back to top