Ticket #11354: r11086_text_fix.diff
File r11086_text_fix.diff, 634 bytes (added by , 15 years ago) |
---|
-
docs/ref/models/querysets.txt
35 35 36 36 * **Slicing.** As explained in :ref:`limiting-querysets`, a ``QuerySet`` can 37 37 be sliced, using Python's array-slicing syntax. Usually slicing a 38 ``QuerySet`` returns another (unevaluated 38 ``QuerySet`` returns another (unevaluated) ``QuerySet``, but Django will 39 39 execute the database query if you use the "step" parameter of slice 40 40 syntax. 41 41