Re: [IronPython] Regex that works under CPython doesn't compile under IronPython

2006-09-12 Thread Neil
Thanks for fixing this bug! ___ users mailing list users@lists.ironpython.com http://lists.ironpython.com/listinfo.cgi/users-ironpython.com

Re: [IronPython] Regex that works under CPython doesn't compile under IronPython

2006-09-08 Thread Dino Viehland
This is a bug - I've opened CodePlex bug #3049 to track this (http://www.codeplex.com/WorkItem/View.aspx?ProjectName=IronPython&WorkItemId=3049). The problem here is that we're not recognizing the double \ as being a valid escape sequence that we should ignore. Instead we skip the 1st \, see th