Message 200089 - Python tracker (original) (raw)

Here is my use case as an example. With this patch above, I can easily create a .zip file of the standard lib.

This was no longer possible at all, after revision 17558, from 2001-04-18:

"""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

print f(2)(4)