From 29eac2648cbc8f4000a391bf6424bc32979b0149 Mon Sep 17 00:00:00 2001 From: Mike Edmunds Date: Fri, 17 Apr 2026 10:16:37 -0700 Subject: Replaced references in docs to accepted PEPs with specific Python docs links. Where the docs used `:pep:` links for established Python language features, replaced them with direct references to the Python docs (usually glossary terms). --- docs/ref/models/querysets.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'docs/ref/models') diff --git a/docs/ref/models/querysets.txt b/docs/ref/models/querysets.txt index ee401a569d..15bb800670 100644 --- a/docs/ref/models/querysets.txt +++ b/docs/ref/models/querysets.txt @@ -2637,9 +2637,9 @@ If you pass ``in_bulk()`` an empty list, you'll get an empty dictionary. *Asynchronous version*: ``aiterator()`` -Evaluates the ``QuerySet`` (by performing the query) and returns an iterator -(see :pep:`234`) over the results, or an asynchronous iterator (see :pep:`492`) -if you call its asynchronous version ``aiterator``. +Evaluates the ``QuerySet`` (by performing the query) and returns an +:term:`python:iterator` over the results, or an :term:`python:asynchronous +iterator` if you call its asynchronous version ``aiterator``. A ``QuerySet`` typically caches its results internally so that repeated evaluations do not result in additional queries. In contrast, ``iterator()`` -- cgit v1.3