Fix fast_parent_copy. The caching is now more solid than before (and doesn't produce weird side effects. This also solves an issue with Lambdas. However, by fixing all of this we have broken some other things.

This commit is contained in:
Dave Halter
2014-08-15 01:55:43 +02:00
parent 1965469050
commit 89ab0ba137
5 changed files with 25 additions and 7 deletions

View File

@@ -61,6 +61,15 @@ class C():
C().a()
def xy(param):
def ret(a, b):
return a + b
return lambda b: ret(param, b)
#? int()
xy(1)(2)
# -----------------
# lambda param (#379)
# -----------------