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 amaury.forgeotdarc
Recipients amaury.forgeotdarc, arigo, jcea, pxd
Date 2012-06-28.15:13:30
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1340896411.29.0.0874288919666.issue15108@psf.upfronthosting.co.za>
In-reply-to
Content
Thanks for the analysis!
This is quite similar to issue793822: gc.get_referrers() can access unfinished tuples.  The difference here is that what breaks is not the monitoring tool, but the "main" program!

Here is a simple script inspired from the original bug; PySequence_Tuple() uses PyTuple_SET_ITEM() which is a macro without the ob_refcnt check, but we can make it call _PyTuple_Resize() and fail there.  All versions of CPython are affected:


import gc
TAG = object()

def monitor():
    lst = [x for x in gc.get_referrers(TAG)
           if isinstance(x, tuple)]
    t = lst[0]   # this *is* the result tuple
    print(t)     # full of nulls !
    return t     # Keep it alive for some time

def my_iter():
    yield TAG    # 'tag' gets stored in the result tuple
    t = monitor()
    for x in range(10):
        yield x  # SystemError when the tuple needs to be resized

tuple(my_iter())
History
Date User Action Args
2012-06-28 15:13:31amaury.forgeotdarcsetrecipients: + amaury.forgeotdarc, arigo, jcea, pxd
2012-06-28 15:13:31amaury.forgeotdarcsetmessageid: <1340896411.29.0.0874288919666.issue15108@psf.upfronthosting.co.za>
2012-06-28 15:13:30amaury.forgeotdarclinkissue15108 messages
2012-06-28 15:13:30amaury.forgeotdarccreate