From: Bartosz Sławecki Date: Thu, 7 Aug 2025 13:50:49 +0000 (+0200) Subject: gh-137440: Update comment in Python/hamt.c on importing for testing (GH-137441) X-Git-Tag: v3.15.0a1~751 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7ab68cd50658f76abc9e0f12e6212736e2440720;p=thirdparty%2FPython%2Fcpython.git gh-137440: Update comment in Python/hamt.c on importing for testing (GH-137441) Switch from `_testcapi` to `_testinternalcapi`. --- diff --git a/Python/hamt.c b/Python/hamt.c index 906149cc6cdb..e372b1a1b4c1 100644 --- a/Python/hamt.c +++ b/Python/hamt.c @@ -256,9 +256,9 @@ Debug ===== The HAMT datatype is accessible for testing purposes under the -`_testcapi` module: +`_testinternalcapi` module: - >>> from _testcapi import hamt + >>> from _testinternalcapi import hamt >>> h = hamt() >>> h2 = h.set('a', 2) >>> h3 = h2.set('b', 3)