Ticket #6047: 6047.2.diff

File 6047.2.diff, 785 bytes (added by Tim Graham, 15 years ago)

update patch to apply to trunk

  • docs/ref/models/querysets.txt

     
    15121512
    15131513Case-sensitive regular expression match.
    15141514
    1515 The regular expression syntax is that of the database backend in use. In the
    1516 case of SQLite, which doesn't natively support regular-expression lookups, the
    1517 syntax is that of Python's ``re`` module.
     1515The regular expression syntax is that of the database backend in use.
     1516In the case of SQLite, which has no built in regular expression support,
     1517this feature is provided by a (Python) user-defined REGEXP function, and
     1518the regular expression syntax is therefore that of Python's ``re`` module.
    15181519
    15191520Example::
    15201521
Back to Top