Ticket #8388: extra-doc.patch

File extra-doc.patch, 485 bytes (added by Samuel Cormier-Iijima, 16 years ago)
  • docs/db-api.txt

     
    10111011    This will work, for example::
    10121012
    10131013        Blog.objects.extra(
    1014             select=SortedDict(('a', '%s'), ('b', '%s')),
     1014            select=SortedDict([('a', '%s'), ('b', '%s')]),
    10151015            select_params=('one', 'two'))
    10161016
    10171017    The only thing to be careful about when using select parameters in
Back to Top