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 Aaron Hall
Recipients Aaron Hall, rhettinger, serhiy.storchaka, terry.reedy
Date 2017-10-17.21:01:50
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1508274110.39.0.213398074469.issue31753@psf.upfronthosting.co.za>
In-reply-to
Content
New information: I think I have pinpointed at least a contributor to the difference - closure lookups seem to be currently slightly slower (by a few percent) than global lookups (see https://stackoverflow.com/a/46798876/541136). 

And as we can see, an inner function that references itself is a closure on itself (see LOAD_DEREF):

>>> def foo():
...     def bar():
...         return bar
...     return bar
...
>>> bar = foo()
>>> import dis
>>> dis.dis(bar)
  3           0 LOAD_DEREF               0 (bar)
              2 RETURN_VALUE

This, at least to me, explains why the performance difference doesn't completely amortize away.
History
Date User Action Args
2017-10-17 21:01:50Aaron Hallsetrecipients: + Aaron Hall, rhettinger, terry.reedy, serhiy.storchaka
2017-10-17 21:01:50Aaron Hallsetmessageid: <1508274110.39.0.213398074469.issue31753@psf.upfronthosting.co.za>
2017-10-17 21:01:50Aaron Halllinkissue31753 messages
2017-10-17 21:01:50Aaron Hallcreate