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 jmravon
Recipients jmravon
Date 2008-01-08.09:21:59
SpamBayes Score 0.41031328
Marked as misclassified No
Message-id <1199784122.17.0.476084084614.issue1761@psf.upfronthosting.co.za>
In-reply-to
Content
Here is my source:
def truc ():
    line = ' hi \n'
    line1 = re.sub('$', 'hello', line)
    line2 = re.sub('$', 'you', line1)
    print line2

Here is what I get:

>>> trace.truc()
 hi hello
helloyou
>>>
History
Date User Action Args
2008-01-08 09:22:02jmravonsetspambayes_score: 0.410313 -> 0.41031328
recipients: + jmravon
2008-01-08 09:22:02jmravonsetspambayes_score: 0.410313 -> 0.410313
messageid: <1199784122.17.0.476084084614.issue1761@psf.upfronthosting.co.za>
2008-01-08 09:22:00jmravonlinkissue1761 messages
2008-01-08 09:21:59jmravoncreate