[issue23910] property_descr_get reuse argument tuple

2018-10-01 Thread STINNER Victor
STINNER Victor added the comment: This optimization caused multiple crashes, so it has been decided to remove it :-( See bpo-30156. -- nosy: +vstinner ___ Python tracker ___

[issue23910] property_descr_get reuse argument tuple

2015-05-24 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: This patch caused crash with C implementation of lru_cache (issue14373). Opened issue24276 for fixing this. -- ___ Python tracker ___ ___

[issue23910] property_descr_get reuse argument tuple

2015-04-30 Thread Raymond Hettinger
Changes by Raymond Hettinger : -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue23910] property_descr_get reuse argument tuple

2015-04-30 Thread Roundup Robot
Roundup Robot added the comment: New changeset 661cdbd617b8 by Raymond Hettinger in branch 'default': Issue #23910: Optimize property() getter calls. Patch by Joe Jevnik https://hg.python.org/cpython/rev/661cdbd617b8 -- nosy: +python-dev ___ Python t

[issue23910] property_descr_get reuse argument tuple

2015-04-29 Thread Joe Jevnik
Joe Jevnik added the comment: I don't think that we need to worry about reusing the single argument tuple in a recursive situation because we never need the value after we start the call. We also just write our new value and then clean up with a NULL to make sure that we don't blow up when we