https://github.com/python/cpython/commit/e682b4478c2ad09de0bbe821127f451f02f6e5ca
commit: e682b4478c2ad09de0bbe821127f451f02f6e5ca
branch: main
author: Cooper Roper <[email protected]>
committer: methane <[email protected]>
date: 2026-09-16T11:13:11+09:00
summary:

Fix comment formatting in dictobject.c (#157597)

files:
M Objects/dictobject.c

diff --git a/Objects/dictobject.c b/Objects/dictobject.c
index 357e714de9a6c0..f0feea4b717ec9 100644
--- a/Objects/dictobject.c
+++ b/Objects/dictobject.c
@@ -99,7 +99,7 @@ dk_nentries to achieve amortized O(1).  Since there are 
DKIX_DUMMY remains in
 dk_indices, we can't increment dk_usable even though dk_nentries is
 decremented.
 
-To preserve the order in a split table, a bit vector is used  to record the
+To preserve the order in a split table, a bit vector is used to record the
 insertion order. When a key is inserted the bit vector is shifted up by 4 bits
 and the index of the key is stored in the low 4 bits.
 As a consequence of this, split keys have a maximum size of 16.

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3//lists/python-checkins.python.org
Member address: [email protected]

Reply via email to