This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Christian.Tismer
Recipients Christian.Tismer
Date 2013-10-16.21:59:41
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1381960781.44.0.319102180214.issue19274@psf.upfronthosting.co.za>
In-reply-to
Content
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)
History
Date User Action Args
2013-10-16 21:59:41Christian.Tismersetrecipients: + Christian.Tismer
2013-10-16 21:59:41Christian.Tismersetmessageid: <1381960781.44.0.319102180214.issue19274@psf.upfronthosting.co.za>
2013-10-16 21:59:41Christian.Tismerlinkissue19274 messages
2013-10-16 21:59:41Christian.Tismercreate