New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Doc: Fix ref warnings for Point class in sqlite3 & make consistant #96095
Doc: Fix ref warnings for Point class in sqlite3 & make consistant #96095
Conversation
|
Actually, it does render differently:
vs. I don't have a strong preference; I could see an argument for it either way. On one hand, @ezio-melotti @erlend-aasland what do you think? We can go with whatever you agree is best here, and presumably document that for the future at some point along with the rest of python/docs-community#52 |
|
In this case I prefer |
|
Since we already use (broken) |
|
Thanks @CAM-Gerlach for the PR, and @erlend-aasland for merging it |
|
GH-96113 is a backport of this pull request to the 3.11 branch. |
|
GH-96114 is a backport of this pull request to the 3.10 branch. |
(cherry picked from commit 303ef09) Co-authored-by: C.A.M. Gerlach <CAM.Gerlach@Gerlach.CAM>
(cherry picked from commit 303ef09) Co-authored-by: C.A.M. Gerlach <CAM.Gerlach@Gerlach.CAM>


After all of @erlend-aasland 's work in the
sqlite3module docs, there are only a few broken references (causing warnings) left. Following our guidance established earlier, this fixes:class:references to the examplePointclass to be non-resolved (!), and also converts aliteralreference to a non-resolved:class:for syntactic, semantic and formatting consistency.This leaves only warnings about the missing
SQLITE_*module-level constants that are currently not explicitly documented (likesqlite.PrepareProtocol), but I'll open a separate issue for that, since the fix is somewhat less trivial.