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 gvanrossum
Recipients Claudiu.Popa, akuchling, benjamin.peterson, gvanrossum, serhiy.storchaka, vstinner
Date 2013-10-02.20:41:00
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <CAP7+vJLG8eYkmnfKtcvck+d7CvivtD7GdFziQKmLg+7-kis3Xg@mail.gmail.com>
In-reply-to <1380745110.72.0.0120486910124.issue19146@psf.upfronthosting.co.za>
Content
>
> I don't like "_ex" suffixes, it's not future proof if we need to add
> another function later.
>

Me neither, but you can't change a function that returns a list of 4-tuples
into a function that returns a list of 5-tuples without breaking existing
code. IIRC for struct and time tuples we created a hack in C where we
return something that behaves like an N-tuple but has some extra attributes
-- but I don't think collections.namedtuple supports that.

> You may rename them using "_iter" suffix and return an iterator instead of
> a list.

I already thought of that, but that doesn't work: the iterator version
would return the stack in the wrong order (note the .reverse() call in the
code).

> Such idea was also proposed for os.listdir() => os.scandir() /
> os.iterdir(). See the discussion in #11406. The caller can write
> tuple(extract_stack_iter()), as I do with dict.items() to sort a dictionary.
>
> I like unit tests :-) The patch should also document new functions.
>

I'll take care of that when we've agreed on the new API.

> You may only need the most recent frames.
>

Not sure what you mean by that.
History
Date User Action Args
2013-10-02 20:41:00gvanrossumsetrecipients: + gvanrossum, akuchling, vstinner, benjamin.peterson, Claudiu.Popa, serhiy.storchaka
2013-10-02 20:41:00gvanrossumlinkissue19146 messages
2013-10-02 20:41:00gvanrossumcreate