[issue3403] Unexpected default arguments behaviour
Georg Brandl <[EMAIL PROTECTED]> added the comment: This is another "problem" due to the fact that parameter defaults are evaluated once during function definition, not every time the function is called. This is expected and will not change. -- nosy: +georg.brandl resolution: -> invalid
[issue3403] Unexpected default arguments behaviour
New submission from SukkoPera <[EMAIL PROTECTED]>: I have just encountered a Python behaviour I wouldn't expect. Take the following code: class Parent: a = 1 def m (self, param = a): print "