Martin v. Löwis <mar...@v.loewis.de> added the comment:

rmtew: search is definitely case insensitive. I cannot reproduce your report; 
the search for "UDP" yields plenty results.

The issue here is that the search only looks for whole words indeed, with words 
being defined by r'(?u)\b\w{%d,%d}\b'. As the underscore counts as a word 
letter, search for "capi" doesn't find "test_capi".

I don't think that having a complete substring search is desirable. However, 
IMO, _ should not be considered as a letter; alternatively each word should be 
split around underscores, and these should be added to the words of a property 
as well.

----------
nosy: +loewis

_______________________________________________________
PSF Meta Tracker <metatrac...@psf.upfronthosting.co.za>
<http://psf.upfronthosting.co.za/roundup/meta/issue372>
_______________________________________________________
_______________________________________________
Tracker-discuss mailing list
Tracker-discuss@python.org
http://mail.python.org/mailman/listinfo/tracker-discuss

Reply via email to