[issue12234] unittest2 could enable regex debugging for more information

2011-06-05 Thread R. David Murray
R. David Murray added the comment: I'm closing this as invalid. If someone wants to work on this feature, they'll first have to add debugging to re -- nosy: +r.david.murray resolution: -> invalid stage: -> committed/rejected status: open -> closed __

[issue12234] unittest2 could enable regex debugging for more information

2011-06-04 Thread Domen Kožar
Domen Kožar added the comment: I see, currently re module does not support debugging for matching a string. Even the upcoming new regex implementation does not support it. -- ___ Python tracker __

[issue12234] unittest2 could enable regex debugging for more information

2011-06-03 Thread Éric Araujo
Éric Araujo added the comment: This sounds non-trivial to implement. Do you have any concrete ideas or a proof of concept? -- nosy: +eric.araujo, ezio.melotti, michael.foord versions: +Python 3.3 -Python 2.7 ___ Python tracker

[issue12234] unittest2 could enable regex debugging for more information

2011-06-01 Thread Domen Kožar
New submission from Domen Kožar : When using self.assertRegexpMatches, it would be useful to see where did the matching stop. Maybe using re module debugging flag? -- components: Library (Lib) messages: 137432 nosy: iElectric priority: normal severity: normal status: open title: unittes