From 7ff65c19012d6538ddef5b520d098b6852e90072 Mon Sep 17 00:00:00 2001 From: bswck Date: Wed, 6 Aug 2025 00:39:05 +0200 Subject: [PATCH] Update hamt section on importing for testing --- Python/hamt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Python/hamt.c b/Python/hamt.c index 906149cc6cdbdc..e372b1a1b4c18b 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)