diff options
| author | Boris Burkov <vasjaforutube@gmail.com> | 2017-09-05 20:28:37 +0100 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2017-09-05 15:28:37 -0400 |
| commit | d67cce4da870c65c5fe80e033130b6770c8e3114 (patch) | |
| tree | 200c964157d9b5e9542457ea1e39775cbdf094d8 | |
| parent | 48c394a6fc2594891f766293afec8f86d63e1015 (diff) | |
Fixed typo in django/db/models/query.py docstring.
| -rw-r--r-- | django/db/models/query.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/models/query.py b/django/db/models/query.py index 512ebad784..7937d4ede3 100644 --- a/django/db/models/query.py +++ b/django/db/models/query.py @@ -231,7 +231,7 @@ class QuerySet: - Returns 100 rows at time (constants.GET_ITERATOR_CHUNK_SIZE) using cursor.fetchmany(). This part is responsible for doing some column masking, and returning the rows in chunks. - 2. sql/compiler.results_iter() + 2. sql.compiler.results_iter() - Returns one row at time. At this point the rows are still just tuples. In some cases the return values are converted to Python values at this location. |
