Author: russellm Date: 2009-09-13 01:32:09 -0500 (Sun, 13 Sep 2009) New Revision: 11563
Modified: django/branches/releases/1.1.X/docs/ref/models/querysets.txt Log: [1.1.X] Fixed #6047 -- Minor correction to the documentation regarding regex field lookups. Thanks to Richard D. Worth for the suggestion, and Steve Holden for the text. Merge of r11541 from trunk. Modified: django/branches/releases/1.1.X/docs/ref/models/querysets.txt =================================================================== --- django/branches/releases/1.1.X/docs/ref/models/querysets.txt 2009-09-13 06:32:00 UTC (rev 11562) +++ django/branches/releases/1.1.X/docs/ref/models/querysets.txt 2009-09-13 06:32:09 UTC (rev 11563) @@ -1512,9 +1512,10 @@ Case-sensitive regular expression match. -The regular expression syntax is that of the database backend in use. In the -case of SQLite, which doesn't natively support regular-expression lookups, the -syntax is that of Python's ``re`` module. +The regular expression syntax is that of the database backend in use. +In the case of SQLite, which has no built in regular expression support, +this feature is provided by a (Python) user-defined REGEXP function, and +the regular expression syntax is therefore that of Python's ``re`` module. Example:: --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django updates" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/django-updates?hl=en -~----------~----~----~----~------~----~------~--~---
