openfile(): Go back to opening the files in text mode. This undoes
[python/dscho.git] / Lib / test / test_future3.py
blob8f8c2749851fc5f4f30e959005581216417a30ed
1 from __future__ import nested_scopes
2 from __future__ import division
3 from __future__ import nested_scopes
5 def f(x):
6 def g(y):
7 return y // x
8 return g
11 print f(2)(5)