Re: Bug? concatenate a number to a backreference: re.sub(r'(zzz:)xxx', r'\1'+str(4444), somevar)

2009-10-23 Thread abdulet
On 23 oct, 13:54, Peter Otten <__pete...@web.de> wrote: > abdulet wrote: > > Well its this normal? i want to concatenate a number to a > > backreference in a regular expression. Im working in a multprocess > > script so the first what i think is in an error in the multiprocess > > logic but what a

Re: Bug? concatenate a number to a backreference: re.sub(r'(zzz:)xxx', r'\1'+str(4444), somevar)

2009-10-23 Thread Peter Otten
abdulet wrote: > Well its this normal? i want to concatenate a number to a > backreference in a regular expression. Im working in a multprocess > script so the first what i think is in an error in the multiprocess > logic but what a sorprise!!! when arrived to this conclussion after > some time de

Bug? concatenate a number to a backreference: re.sub(r'(zzz:)xxx', r'\1'+str(4444), somevar)

2009-10-23 Thread abdulet
Well its this normal? i want to concatenate a number to a backreference in a regular expression. Im working in a multprocess script so the first what i think is in an error in the multiprocess logic but what a sorprise!!! when arrived to this conclussion after some time debugging i see that: impor