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 effbot
Recipients
Date 2001-09-17.16:27:45
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
as reported by Carlos Gaston Alvarez on 
comp.lang.python (verified in 2.1.1 and 2.2a3):

>>> import pre
>>> p = pre.compile("x*")
>>> p.sub("-", "abxd")
'-a-b-d-'

>>> import sre
>>> p = sre.compile("x*")
>>> p.sub("-", "abxd")
'-a-b--d-'

</F>
History
Date User Action Args
2007-08-23 13:56:26adminlinkissue462270 messages
2007-08-23 13:56:26admincreate