Issue991282

classification
Title: Case insensitive regexp search not working properly
Type: Severity: normal
Components: Core Versions:
Milestone:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: fwierzbicki, jkuperus, kzuberi
Priority: normal Keywords:

Created on 2004-07-15.01:12:37 by jkuperus, last changed 2006-05-15.15:32:23 by fwierzbicki.

Messages
msg906 (view) Author: Jelmer (jkuperus) Date: 2004-07-15.01:12:37
print re.search("^([^d]+)", "abcdefg", re.I).group(1)

output : abcdefg

print re.search("^([^d]+)", "abcdefg").group(1)

output : abc

Both display abc in cpython
msg907 (view) Author: Khalid Zuberi (kzuberi) Date: 2005-11-16.16:17:37
Logged In: YES 
user_id=18288


Quick note: while i can reproduce this on 2.1, it appears to
already be fixed in 2.2a1. 

- kz
msg908 (view) Author: Frank Wierzbicki (fwierzbicki) Date: 2006-05-15.15:32:23
Logged In: YES 
user_id=193969

This is fixed on the tip.
History
Date User Action Args
2004-07-15 01:12:37jkuperuscreate