1
0
mirror of https://github.com/django/django.git synced 2025-07-04 09:49:12 +00:00

[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.

git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@11563 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Russell Keith-Magee 2009-09-13 06:32:09 +00:00
parent bea1678a10
commit 4d84513795

View File

@ -1512,9 +1512,10 @@ regex
Case-sensitive regular expression match. Case-sensitive regular expression match.
The regular expression syntax is that of the database backend in use. In the The regular expression syntax is that of the database backend in use.
case of SQLite, which doesn't natively support regular-expression lookups, the In the case of SQLite, which has no built in regular expression support,
syntax is that of Python's ``re`` module. 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:: Example::