dvdh / esmre

Automatically exported from code.google.com/p/esmre
GNU Lesser General Public License v2.1
1 stars 0 forks source link

Hints extraction doesn't understand repetition #6

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?

{{{
>>> import esmre
>>> i = esmre.Index()
>>> i.enter(r"Ar{1-10}, me harties!", "Hello")
>>> i.query("Arrrr, me harties!")
[]
>>> 
}}}

What is the expected output? What do you see instead?

{{{
>>> import esmre
>>> i = esmre.Index()
>>> i.enter(r"Ar{1-10}, me harties!", "Hello")
>>> i.query("Arrrr, me harties!")
['Hello']
>>>
}}}

Original issue reported on code.google.com by whar...@gmail.com on 29 Feb 2008 at 6:57

Attachments:

GoogleCodeExporter commented 9 years ago
Fixed.

Original comment by whar...@gmail.com on 29 Feb 2008 at 7:37

GoogleCodeExporter commented 9 years ago
Released in r0_2.

Original comment by whar...@gmail.com on 2 May 2008 at 1:11