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 selik
Recipients eric.smith, ezio.melotti, mrabarnett, selik, serhiy.storchaka, xiang.zhang
Date 2017-04-03.18:09:54
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1491242994.47.0.565392745622.issue29965@psf.upfronthosting.co.za>
In-reply-to
Content
Sorry, it looks like I got the issue number wrong. My comparison should not have been with #24454, but instead with an issue I can't locate at the moment. Reproducing the example:

    for g0, g1, g2 in re.finditer(r'(\d+)/(\d+)', 'Is 1/3 the same as 2/6?'):
        ratio = Fraction(int(g1), int(g2))

Better:

    for mo in re.finditer(r'(\d+)/(\d+)', 'Is 1/3 the same as 2/6?'):
        ratio = Fraction(*map(int, mo[1:3]))

The map in the last one isn't very pretty, but I hope it illustrates the gist of what I'd like to do for a much larger pattern with many capture groups.
History
Date User Action Args
2017-04-03 18:09:54seliksetrecipients: + selik, eric.smith, ezio.melotti, mrabarnett, serhiy.storchaka, xiang.zhang
2017-04-03 18:09:54seliksetmessageid: <1491242994.47.0.565392745622.issue29965@psf.upfronthosting.co.za>
2017-04-03 18:09:54seliklinkissue29965 messages
2017-04-03 18:09:54selikcreate