From: Bodhi Silberling Date: Tue, 20 Jan 2026 06:50:34 +0000 (-0800) Subject: Fix typo: 'exept' -> 'except' in Lib/dbm/dumb.py (GH-144060) X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=05eab964350dc1b4c04352c87fff4904d324b7ca;p=thirdparty%2FPython%2Fcpython.git Fix typo: 'exept' -> 'except' in Lib/dbm/dumb.py (GH-144060) --- 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)