[IronPython] re module

Dino Viehland dinov at exchange.microsoft.com
Tue Apr 11 17:55:25 CEST 2006


Thanks for the bug report, I've got it filed in our bug database.

My guess is that we'll be able to get this fixed for beta 6.


Do you want to help develop Dynamic languages on CLR? (http://members.microsoft.com/careers/search/details.aspx?JobID=6D4754DE-11F0-45DF-8B78-DC1B43134038)

-----Original Message-----
From: users-bounces at lists.ironpython.com [mailto:users-bounces at lists.ironpython.com] On Behalf Of Andrzej Krzywda
Sent: Tuesday, April 11, 2006 2:37 AM
To: users at lists.ironpython.com
Subject: [IronPython] re module

Hi,

There seems to be a different behaviour in the re module...

Python:

 >>> import re
 >>> re.match("a[bcd]*b", "abcbd").group(1)
Traceback (most recent call last):
  File "<stdin>", line 1, in ?
IndexError: no such group

Iron Python (Beta5):

 >>> import re
 >>> re.match("a[bcd]*b", "abcbd").group(1)
''

--
Andrzej
_______________________________________________
users mailing list
users at lists.ironpython.com
http://lists.ironpython.com/listinfo.cgi/users-ironpython.com



More information about the Ironpython-users mailing list