]>
git.ipfire.org Git - thirdparty/Python/cpython.git/log
Christian Heimes [Sat, 13 Aug 2022 19:56:08 +0000 (21:56 +0200)]
gh-95853: Add script to automate WASM build (GH-95828)
Automate WASM build with a new Python script. The script provides
several build profiles with configure flags for Emscripten flavors
and WASI. The script can detect and use Emscripten SDK and WASI SDK from
default locations or env vars.
``configure`` now detects Node arguments and creates HOSTRUNNER
arguments for Node 16. It also sets correct arguments for
``wasm64-emscripten``.
Co-authored-by: Brett Cannon <brett@python.org>
Christian Heimes [Sat, 13 Aug 2022 19:00:58 +0000 (21:00 +0200)]
gh-89313: Add hashlib.file_digest to whatsnew 3.11 (GH-95965)
Automerge-Triggered-By: GH:pablogsal
Pablo Galindo Salgado [Sat, 13 Aug 2022 18:27:44 +0000 (19:27 +0100)]
bpo-25625: Document contextlib.chdir in the 3.11 what's new (#95962)
Irit Katriel [Sat, 13 Aug 2022 11:49:04 +0000 (12:49 +0100)]
gh-95914: Add paragraph about PEP 654 in main body of 'What's New in 3.11' (GH-95937)
Erlend E. Aasland [Sat, 13 Aug 2022 10:09:40 +0000 (12:09 +0200)]
gh-90928: Improve static initialization of keywords tuple in AC (#95907)
Howie Zhao [Sat, 13 Aug 2022 04:23:33 +0000 (12:23 +0800)]
gh-94439: typing docs: Add minimum version to `__required_keys__` and `__optional_keys__` (#95373)
fluesvamp [Sat, 13 Aug 2022 03:40:41 +0000 (22:40 -0500)]
Fix typo in internal/pycore_atomic.h (GH-95939)
Barney Gale [Fri, 12 Aug 2022 21:23:41 +0000 (22:23 +0100)]
gh-94909: fix joining of absolute and relative Windows paths in pathlib (GH-95450)
Have pathlib use `os.path.join()` to join arguments to the `PurePath` initialiser, which fixes a minor bug when handling relative paths with drives.
Previously:
```python
>>> from pathlib import PureWindowsPath
>>> a = 'C:/a/b'
>>> b = 'C:x/y'
>>> PureWindowsPath(a, b)
PureWindowsPath('C:x/y')
```
Now:
```python
>>> PureWindowsPath(a, b)
PureWindowsPath('C:/a/b/x/y')
```
Shantanu [Fri, 12 Aug 2022 18:41:02 +0000 (11:41 -0700)]
gh-94996: Disallow lambda pos only params with feature_version < (3, 8) (GH-95934)
Shantanu [Fri, 12 Aug 2022 17:27:50 +0000 (10:27 -0700)]
gh-94996: Disallow parsing pos only params with feature_version < (3, 8) (GH-94997)
Łukasz Langa [Fri, 12 Aug 2022 16:22:25 +0000 (18:22 +0200)]
gh-90300: [docs] Add whatsnew entry for new --help output (GH-95856) (GH-95928)
Co-authored-by: Éric <merwok@netwok.org>
Hugo van Kemenade [Fri, 12 Aug 2022 16:22:06 +0000 (19:22 +0300)]
gh-82180: Document support for non-integer arg removed from grp.getgrgid in 3.10 (GH-95346)
CAM Gerlach [Fri, 12 Aug 2022 15:50:01 +0000 (10:50 -0500)]
gh-95914: Add missing PEPs to the Summary section of 3.11 What's New (GH-95916)
Irit Katriel [Fri, 12 Aug 2022 15:35:09 +0000 (16:35 +0100)]
gh-95922: compiler's eliminate_empty_basic_blocks ignores the last block of the compilation unit (GH-95924)
Yury Selivanov [Thu, 11 Aug 2022 23:12:06 +0000 (16:12 -0700)]
gh-95724: Clarify taskgroups.py license. (#95847)
Erlend E. Aasland [Thu, 11 Aug 2022 23:05:12 +0000 (01:05 +0200)]
gh-95273: Improve sqlite3.complete_statement docs (#95840)
Co-authored-by: Ezio Melotti <ezio.melotti@gmail.com>
Co-authored-by: CAM Gerlach <CAM.Gerlach@Gerlach.CAM>
Eric Snow [Thu, 11 Aug 2022 21:25:49 +0000 (15:25 -0600)]
gh-90928: Statically Initialize the Keywords Tuple in Clinic-Generated Code (gh-95860)
We only statically initialize for core code and builtin modules. Extension modules still create
the tuple at runtime. We'll solve that part of interpreter isolation separately.
This change includes generated code. The non-generated changes are in:
* Tools/clinic/clinic.py
* Python/getargs.c
* Include/cpython/modsupport.h
* Makefile.pre.in (re-generate global strings after running clinic)
* very minor tweaks to Modules/_codecsmodule.c and Python/Python-tokenize.c
All other changes are generated code (clinic, global strings).
Terry Jan Reedy [Thu, 11 Aug 2022 20:54:03 +0000 (16:54 -0400)]
gh-95841: IDLE - Revise Windows local doc url (#95845)
#91242 replaced the Windows chm help file with a copy
of the html docs. This PR replaces the IDLE code that
fetches the Windows local help url passed to os.startfile.
Co-authored-by: Steve Dower
Terry Jan Reedy [Thu, 11 Aug 2022 20:50:49 +0000 (16:50 -0400)]
gh-84910: Change 'IDLE Help' to 'IDLE Doc' (#95873)
'IDLE Help' was a plain text file. It was superceded years ago
by a copy of the much more complete html doc. .
Irit Katriel [Thu, 11 Aug 2022 16:40:49 +0000 (17:40 +0100)]
gh-87092: compiler's codegen stage uses int jump target labels, and the target pointer is only calculated just before optimization stage (GH-95655)
Mark Shannon [Thu, 11 Aug 2022 13:06:32 +0000 (14:06 +0100)]
GH-95818: Skip incomplete frames in `PyThreadState_GetFrame` (GH-95886)
zhanpon [Thu, 11 Aug 2022 11:32:52 +0000 (20:32 +0900)]
Update _PyEval_AddPendingCall comment (#95817)
Christian Heimes [Thu, 11 Aug 2022 09:58:10 +0000 (11:58 +0200)]
gh-95878: Fix format char in datetime CAPI tests (GH-95879)
Christian Heimes [Thu, 11 Aug 2022 08:55:57 +0000 (10:55 +0200)]
gh-95876: Fix format string in pegen error location code (#95877)
Stanislav Zmiev [Thu, 11 Aug 2022 07:31:46 +0000 (11:31 +0400)]
gh-90385: Add pathlib.Path.walk what's new section (GH-95467)
Automerge-Triggered-By: GH:brettcannon
Clemens Tolboom [Thu, 11 Aug 2022 06:23:40 +0000 (08:23 +0200)]
Docs: replace 'currying' by 'partial function'. (#91814)
Terry Jan Reedy [Thu, 11 Aug 2022 02:44:17 +0000 (22:44 -0400)]
gh-75510: Edit idlelib entry in doc (#95869)
Make section instead of subsection and revise sentence.
Terry Jan Reedy [Thu, 11 Aug 2022 02:04:36 +0000 (22:04 -0400)]
gh-84910: Tweak IDLE Glossary entry (#95866)
Link "IDLE" to its doc and add 'and Learning' to its expansion,
as in the doc.
Steve Dower [Wed, 10 Aug 2022 23:47:58 +0000 (00:47 +0100)]
gh-95733: Allow installing Store package on older Windows versions (GH-95862)
Mark Dickinson [Wed, 10 Aug 2022 18:25:39 +0000 (19:25 +0100)]
gh-95605: Fix `float(s)` error message when `s` contains only whitespace (GH-95665)
This PR fixes the error message from float(s) in the case where s contains only whitespace.
David Bonner [Wed, 10 Aug 2022 17:08:55 +0000 (13:08 -0400)]
gh-95804: Respect MemoryHandler.flushOnClose in logging shutdown. (GH-95857)
Petr Viktorin [Wed, 10 Aug 2022 11:12:40 +0000 (13:12 +0200)]
gh-95504: Fix negative numbers in PyUnicode_FromFormat (GH-95848)
Co-authored-by: philg314 <110174000+philg314@users.noreply.github.com>
esc [Wed, 10 Aug 2022 10:50:21 +0000 (12:50 +0200)]
[docs] Mention RESUME opcode in whatsnew/3.11.rst (#95595)
Petr Viktorin [Wed, 10 Aug 2022 09:53:10 +0000 (11:53 +0200)]
gh-93649: Undefine NDEBUG in Modules/_testcapi/* to enable assert() (GH-95793)
Petr Viktorin [Wed, 10 Aug 2022 07:10:25 +0000 (09:10 +0200)]
gh-93649: Split unicode tests from _testcapimodule.c & add some more (GH-95819)
- Move PyUnicode tests to a separate file
- Add some more tests for PyUnicode_FromFormat
Co-authored-by: philg314 <110174000+philg314@users.noreply.github.com>
Eric Snow [Tue, 9 Aug 2022 23:04:05 +0000 (17:04 -0600)]
gh-95349: Hide a Distutils Warning Filter for test_check_c_globals (GH-95837)
Under certain build conditions, test_check_c_globals fails. This fix takes the same approach as we took for gh-84236 (via gh-20095). We'll be removing use of distutils in the c-analyzer at some point. Until then we'll hide the warning filter.
Terry Jan Reedy [Tue, 9 Aug 2022 18:34:42 +0000 (14:34 -0400)]
gh-75500: Add idlelib section to IDLE doc (#95832)
This enables accessing IDLE as 'idlelib' in the Doc Module listing.
Andrzej Bartosiński [Tue, 9 Aug 2022 13:59:27 +0000 (15:59 +0200)]
gh-95767: Fix grammatical error in asyncio loop.create_task docs (#95768)
Mark Shannon [Tue, 9 Aug 2022 13:26:37 +0000 (14:26 +0100)]
GH-92678: Document that you shouldn't be doing your own dictionary offset calculations. (GH-95598)
Co-authored-by: Petr Viktorin <encukou@gmail.com>
Co-authored-by: Stanley <46876382+slateny@users.noreply.github.com>
Petr Viktorin [Tue, 9 Aug 2022 07:03:11 +0000 (09:03 +0200)]
Disable Limited API tests with Py_TRACE_REFS (GH-95796)
Raymond Hettinger [Tue, 9 Aug 2022 06:31:50 +0000 (23:31 -0700)]
Improvements to the bisect docs (GH-95807)
Matthias Görgens [Mon, 8 Aug 2022 23:22:26 +0000 (07:22 +0800)]
bpo-37000: Remove obsolete comment in _randbelow_with_getrandbits (#95775)
Erlend E. Aasland [Mon, 8 Aug 2022 19:25:35 +0000 (21:25 +0200)]
gh-95273: Reorganize sqlite3 doc module level funcs and vars (#95626)
Co-authored-by: Ezio Melotti <ezio.melotti@gmail.com>
Co-authored-by: CAM Gerlach <CAM.Gerlach@Gerlach.CAM>
Serhiy Storchaka [Mon, 8 Aug 2022 16:21:07 +0000 (19:21 +0300)]
gh-95781: More strict format string checking in PyUnicode_FromFormatV() (GH-95784)
An unrecognized format character in PyUnicode_FromFormat() and
PyUnicode_FromFormatV() now sets a SystemError.
In previous versions it caused all the rest of the format string to be
copied as-is to the result string, and any extra arguments discarded.
Terry Jan Reedy [Mon, 8 Aug 2022 13:37:43 +0000 (09:37 -0400)]
gh-95491: Mention IDLE Issue project in Readme (#95750)
Petr Viktorin [Mon, 8 Aug 2022 12:12:05 +0000 (14:12 +0200)]
gh-93274: Expose receiving vectorcall in the Limited API (GH-95717)
Serhiy Storchaka [Mon, 8 Aug 2022 11:00:17 +0000 (14:00 +0300)]
gh-91838: Resolve more HTTP links which redirect to HTTPS (GH-95650)
Erlend E. Aasland [Mon, 8 Aug 2022 10:15:57 +0000 (12:15 +0200)]
gh-95388: Suppress deprecation warning in test_immutable_type_with_mutable_base (GH-95728)
When 3.14 kicks in, it'll be a RuntimeError;
the test will correctly fail then.
Erlend E. Aasland [Mon, 8 Aug 2022 08:58:29 +0000 (10:58 +0200)]
Fix downcast compiler warning in Modules/_testcapi/vectorcall.c (#95729)
Tim Gates [Mon, 8 Aug 2022 08:02:45 +0000 (18:02 +1000)]
docs: Fix a few typos (#94899)
- overriden => overridden
- calcualation => calculation
Signed-off-by: Tim Gates <tim.gates@iress.com>
Andrzej Bartosiński [Mon, 8 Aug 2022 06:49:48 +0000 (08:49 +0200)]
Fix documentation typo for functools.cmp_to_key (GH-95766)
JuniorJPDJ [Sat, 6 Aug 2022 23:21:23 +0000 (01:21 +0200)]
gh-88339: enable fast seeking of uncompressed unencrypted zipfile.ZipExtFile (GH-27737)
Avoid reading all of the intermediate data in uncompressed items in a zip file when the user seeks forward.
Contributed by: @JuniorJPDJ
Erlend E. Aasland [Sat, 6 Aug 2022 21:30:26 +0000 (23:30 +0200)]
gh-94635: Fixup sqlite3 'Introduction' seealso note (#95751)
In gh-95269, the seealso note incorrectly ended up in
the 'Tutorial' section.
Sion Kang [Sat, 6 Aug 2022 16:53:19 +0000 (01:53 +0900)]
\b gh-95376: Add test for names containing null (#GH-5394)
Co-authored-by: Erlend Egeberg Aasland <erlend.aasland@protonmail.com>
Sion Kang [Sat, 6 Aug 2022 16:52:53 +0000 (01:52 +0900)]
gh-95395: Add argument type error test (GH-95412)
Howie Zhao [Sat, 6 Aug 2022 16:50:28 +0000 (00:50 +0800)]
gh-95155: Update "Using Python on a Mac" documentation (GH-95284)
Co-authored-by: Łukasz Langa <lukasz@langa.pl>
da-woods [Sat, 6 Aug 2022 15:56:00 +0000 (16:56 +0100)]
Fix typo in test_dataclasses.py (gh-95735)
`dataclass` was called as a function when it was almost certainly intended to be a decorator.
Aivars Kalvāns [Sat, 6 Aug 2022 06:55:24 +0000 (09:55 +0300)]
gh-95385 Fastpath for encoding dict to JSON (gh-95374)
Oleg Iarygin [Sat, 6 Aug 2022 00:41:29 +0000 (03:41 +0300)]
gh-93243: Make smtpd private before porting its users (GH-93246)
gh-93243
This PR is required to reduce diffs of the following porting (no need to either maintain documentation and tests consistent with each porting step, or try to port everything and remove smtpd in a single PR).
Automerge-Triggered-By: GH:warsaw
Barney Gale [Fri, 5 Aug 2022 22:37:44 +0000 (23:37 +0100)]
gh-86943: implement `pathlib.WindowsPath.is_mount()` (GH-31458)
Have `pathlib.WindowsPath.is_mount()` call `ntpath.ismount()`. Previously it raised `NotImplementedError` unconditionally.
https://bugs.python.org/issue42777
Terry Jan Reedy [Fri, 5 Aug 2022 21:15:18 +0000 (17:15 -0400)]
gh-95251: IDLE - Add What's New section to README (#95688)
Document what I (TJR) currently do for 3.10/3.11.
Co-authored-by: Erlend E. Aasland <erlend.aasland@protonmail.com>
Terry Jan Reedy [Fri, 5 Aug 2022 16:21:45 +0000 (12:21 -0400)]
gh-89362: Doc IDLE menu and search (#95697)
Update menu item position and capitalization.
Add paragraph about search.
For help.html, include save-as addition.
Pablo Galindo Salgado [Fri, 5 Aug 2022 14:42:39 +0000 (15:42 +0100)]
Update the magic number in test_util.py (#95714)
Pablo Galindo Salgado [Fri, 5 Aug 2022 14:40:41 +0000 (15:40 +0100)]
Remove draft notice from 3.11 What's new (#95713)
Victor Stinner [Fri, 5 Aug 2022 11:26:58 +0000 (13:26 +0200)]
gh-93744: Remove configure --with-cxx-main option (#95651)
Remove the "configure --with-cxx-main" build option: it didn't work
for many years. Remove the MAINCC variable from configure and
Makefile.
The MAINCC variable was added by the issue gh-42471: commit
0f48d98b740110a672b62d467af192ec160e56ba . Previously, --with-cxx-main
was named --with-cxx.
Keep CXX and LDCXXSHARED variables, even if they are no longer used
by Python build system.
Fantix King [Fri, 5 Aug 2022 08:45:36 +0000 (04:45 -0400)]
gh-95573: Reduce test data size in test_asyncio/test_ssl.py (GH-95668)
Co-authored-by: Łukasz Langa <lukasz@langa.pl>
Mariatta Wijaya [Fri, 5 Aug 2022 07:41:02 +0000 (00:41 -0700)]
GH-95685: Fix rendering of the string documentation (#95686)
There's an extra underlines that messed the rest of the documentation rendering.
Closes #95685
Fantix King [Fri, 5 Aug 2022 07:33:35 +0000 (03:33 -0400)]
gh-95573: Fix a mistake in asyncio ssl tests suppressing all logs (#95687)
Brandt Bucher [Fri, 5 Aug 2022 05:45:05 +0000 (22:45 -0700)]
GH-90997: Document CACHEs (GH-95694)
Terry Jan Reedy [Fri, 5 Aug 2022 01:51:14 +0000 (21:51 -0400)]
gh-65802: IDLE - explain SaveAs and extensions (#95690)
File name extensions may or may not be shown for the current name
and are added in an OS-dependent manner if not given for the new
name.
Eric Snow [Fri, 5 Aug 2022 01:26:59 +0000 (19:26 -0600)]
gh-94673: Add Per-Interpreter tp_subclasses for Static Builtin Types (gh-95301)
Barry Warsaw [Fri, 5 Aug 2022 00:24:26 +0000 (17:24 -0700)]
gh-94619: Remove long deprecated methods module_repr() and load_module() (#94624)
* gh-94619: Remove long deprecated methods module_repr() and load_module()
Closes #94619
* Update Misc/NEWS.d/next/Library/2022-07-06-14-57-33.gh-issue-94619.PRqKVX.rst
Fix typo
Co-authored-by: Brett Cannon <brett@python.org>
Co-authored-by: Brett Cannon <brett@python.org>
Erlend Egeberg Aasland [Thu, 4 Aug 2022 22:06:46 +0000 (00:06 +0200)]
Docs: sqlite3 docs fixup (#95681)
- Disable links to the module itself
- Fix link indent
- Consistent ref markup
Erlend Egeberg Aasland [Thu, 4 Aug 2022 20:41:18 +0000 (22:41 +0200)]
gh-95271: Extract placeholders howto from sqlite3 tutorial (#95522)
Co-authored-by: CAM Gerlach <CAM.Gerlach@Gerlach.CAM>
Co-authored-by: Ezio Melotti <ezio.melotti@gmail.com>
fluesvamp [Thu, 4 Aug 2022 20:18:05 +0000 (15:18 -0500)]
Remove unnecessary text from documentation. (GH-95670)
Erlend Egeberg Aasland [Thu, 4 Aug 2022 19:58:10 +0000 (21:58 +0200)]
gh-95273: Improve documented return values and exceptions raised for sqlite3 class methods (#95530)
Co-authored-by: Ezio Melotti <ezio.melotti@gmail.com>
Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
Erlend Egeberg Aasland [Thu, 4 Aug 2022 19:26:13 +0000 (21:26 +0200)]
gh-95656: Enable the sqlite3 load extension API in Windows build (#95662)
ceh [Thu, 4 Aug 2022 18:25:53 +0000 (20:25 +0200)]
Docs: fix two typos in the sqlite3 docs (#95661)
- statment => statement
- transaciton => transaction
Eric Snow [Thu, 4 Aug 2022 17:28:15 +0000 (11:28 -0600)]
gh-94673: Recover Weaklist Lookup Performance (gh-95544)
gh-95302 seems to have introduced a small performance regression. Here we make some minor changes to recover that lost performance.
Eric Snow [Thu, 4 Aug 2022 16:47:02 +0000 (10:47 -0600)]
gh-90110: Update the C Analyzer Tool Whitelists (gh-95628)
Serhiy Storchaka [Thu, 4 Aug 2022 16:12:35 +0000 (19:12 +0300)]
Fix links to old SF bugs (#95648)
Steve Dower [Thu, 4 Aug 2022 16:12:08 +0000 (17:12 +0100)]
gh-95587: Fixes some upgrade detection issues in the Windows installer (GH-95631)
Petr Viktorin [Thu, 4 Aug 2022 15:19:29 +0000 (17:19 +0200)]
gh-93274: Make vectorcall safe on mutable classes & inherit it by default (#95437)
Petr Viktorin [Thu, 4 Aug 2022 14:13:45 +0000 (16:13 +0200)]
gh-95388: Deprecate creating immutable types with mutable bases (GH-95533)
Irit Katriel [Thu, 4 Aug 2022 13:59:32 +0000 (14:59 +0100)]
gh-87092: create a 'jump target label' abstraction so that the compiler's codegen stage does not work directly with basic blocks (GH-95398)
Kumar Aditya [Thu, 4 Aug 2022 13:57:44 +0000 (19:27 +0530)]
GH-95289: Always call uncancel() when parent cancellation is requested (#95602)
Co-authored-by: Guido van Rossum <guido@python.org>
Ken Jin [Thu, 4 Aug 2022 13:53:31 +0000 (21:53 +0800)]
gh-94936: C getters: co_varnames, co_cellvars, co_freevars (#95008)
Łukasz Langa [Thu, 4 Aug 2022 13:51:38 +0000 (15:51 +0200)]
gh-91323: Revert "Allow overriding a future compliance check in asyncio.Task (GH-32197)" (GH-95442)
This reverts commit
d4bb38f82bf18b00db3129031ce4969b6f0caab9 .
Serhiy Storchaka [Thu, 4 Aug 2022 10:30:05 +0000 (13:30 +0300)]
gh-91838: Resolve HTTP links which redirect to HTTPS (GH-95642)
It updates links which redirect to HTTPS with different authority or
path.
Terry Jan Reedy [Thu, 4 Aug 2022 07:35:42 +0000 (03:35 -0400)]
gh-95638: Update idlelib README file and menu lists (#95639)
Serhiy Storchaka [Thu, 4 Aug 2022 07:13:49 +0000 (10:13 +0300)]
gh-91838: Use HTTPS links in docs for resources which redirect to HTTPS (GH-95527)
If an HTTP link is redirected to a same looking HTTPS link, the latter can
be used directly without changes in readability and behavior.
It protects from a men-in-the-middle attack.
This change does not affect Python examples.
Terry Jan Reedy [Thu, 4 Aug 2022 02:17:57 +0000 (22:17 -0400)]
gh-95191: IDLE Prompts entry for What's New 3.10 (#95633)
Terry Jan Reedy [Thu, 4 Aug 2022 00:56:05 +0000 (20:56 -0400)]
gh-95191: IDLE Prompts entry for Whatnew 3.11 (#95632)
Miro Hrončok [Wed, 3 Aug 2022 23:19:36 +0000 (01:19 +0200)]
gh-94675: Add a regression test for rjsmin re slowdown (GH-94685)
Adds a regression test for an re slowdown observed by rjsmin.
Uses multiprocessing to kill the test after SHORT_TIMEOUT.
Co-authored-by: Oleg Iarygin <dralife@yandex.ru>
Co-authored-by: Christian Heimes <christian@python.org>
Hugo van Kemenade [Wed, 3 Aug 2022 21:47:20 +0000 (00:47 +0300)]
gh-90817: Use .. deprecated-removed:: when removal version known (#94960)
Steve Dower [Wed, 3 Aug 2022 21:18:51 +0000 (22:18 +0100)]
gh-94399: Restore PATH search behaviour of py.exe launcher for '/usr/bin/env' shebang lines (GH-95582)
Jo, Yunjin [Wed, 3 Aug 2022 21:16:15 +0000 (06:16 +0900)]
gh-95597: Fix typo in Lib directory files (#95599)
Ethan Furman [Wed, 3 Aug 2022 21:11:20 +0000 (14:11 -0700)]
[Enum] add whatsnew entries (GH-95455)
Derek Kim [Wed, 3 Aug 2022 20:55:03 +0000 (15:55 -0500)]
gh-95423: Update winreg.DeleteKeyEx documentation and remove dynamic function load (GH-95521)
Erlend Egeberg Aasland [Wed, 3 Aug 2022 20:21:15 +0000 (22:21 +0200)]
gh-95273: Align sqlite3 const doc refs with the devguide recommendations (#95525)