From 05eab964350dc1b4c04352c87fff4904d324b7ca Mon Sep 17 00:00:00 2001 From: Bodhi Silberling Date: Mon, 19 Jan 2026 22:50:34 -0800 Subject: [PATCH] Fix typo: 'exept' -> 'except' in Lib/dbm/dumb.py (GH-144060) --- Lib/dbm/dumb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/dbm/dumb.py b/Lib/dbm/dumb.py index 1bc239a84fff..c1c38da5101a 100644 --- a/Lib/dbm/dumb.py +++ b/Lib/dbm/dumb.py @@ -9,7 +9,7 @@ XXX TO DO: - seems to contain a bug when updating... - reclaim free space (currently, space once occupied by deleted or expanded -items is not reused exept if .reorganize() is called) +items is not reused except if .reorganize() is called) - support concurrent access (currently, if two processes take turns making updates, they can mess up the index) -- 2.47.3