You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks! Anyway, I don't know, I'm sorry. :-)
Just reporting what I found out.
In my opinion, first you need to decide whether to modify either the search indexer or the source documentation.
koyuki7w
added a commit
to koyuki7w/cpython
that referenced
this issue
Mar 4, 2025
Divided the class description into a part about sets and a part about frozensets.
Also, cleaned up the explanation of the comparison method.
Fixedpythongh-113746.
Searching for
update
shows these results:https://docs.python.org/3.13/search.html?q=update
The search result list includes
frozenset.update
, which is false:frozenset
does not have such method.I guess this is due to the fact that on the target page https://docs.python.org/3.13/library/stdtypes.html#frozenset.update,
set
andfrozenset
are explained together, but the search indexer doesn't catch it.#frozenset.update
is even the working page anchor, while#set.update
is not. More confusion.Further, I'm guessing that this will be happening with more class groups documented together.
Linked PRs
set
andfrozenset
documents #130822The text was updated successfully, but these errors were encountered: