We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Originally reported by: RMTEW FULL NAME (Bitbucket: rmtew, GitHub: rmtew)
(originally reported in Trac by @akruis on 2013-04-12 15:30:16)
Hi,
thanks to my colleague Michael Bauer I was able to identify the following issue:
Version: 2.7-slp
If I define the following callable class
class C(object): pass C.__call__ = some_function
and execute c=C(); c() in a tasklet then some_function runs at nesting level 1.
c=C(); c()
If I change the definition of class C to
class C(object): __call__ = some_function
the nesting level does not increase.
The attached test script demonstrates this problem. I would like to fix this issue for v2.7.4-slp.
Originally reported by: RMTEW FULL NAME (Bitbucket: rmtew, GitHub: rmtew)
(originally reported in Trac by @akruis on 2013-04-12 15:30:16)
Hi,
thanks to my colleague Michael Bauer I was able to identify the following issue:
Version: 2.7-slp
If I define the following callable class
and execute
c=C(); c()in a tasklet then some_function runs at nesting level 1.If I change the definition of class C to
the nesting level does not increase.
The attached test script demonstrates this problem.
I would like to fix this issue for v2.7.4-slp.