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 vstinner
Recipients Claudiu.Popa, akuchling, benjamin.peterson, gvanrossum, serhiy.storchaka, vstinner
Date 2013-10-02.20:18:30
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1380745110.72.0.0120486910124.issue19146@psf.upfronthosting.co.za>
In-reply-to
Content
> It adds extract_tb_ex() and extract_stack_ex() functions ...

I don't like "_ex" suffixes, it's not future proof if we need to add another function later.

You may rename them using "_iter" suffix and return an iterator instead of a list. 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.

> Feedback?

I like unit tests :-) The patch should also document new functions.
You may only need the most recent frames.
History
Date User Action Args
2013-10-02 20:18:30vstinnersetrecipients: + vstinner, gvanrossum, akuchling, benjamin.peterson, Claudiu.Popa, serhiy.storchaka
2013-10-02 20:18:30vstinnersetmessageid: <1380745110.72.0.0120486910124.issue19146@psf.upfronthosting.co.za>
2013-10-02 20:18:30vstinnerlinkissue19146 messages
2013-10-02 20:18:30vstinnercreate