https://github.com/python/cpython/commit/05eab964350dc1b4c04352c87fff4904d324b7ca commit: 05eab964350dc1b4c04352c87fff4904d324b7ca branch: main author: Bodhi Silberling <[email protected]> committer: serhiy-storchaka <[email protected]> date: 2026-01-20T08:50:34+02:00 summary:
Fix typo: 'exept' -> 'except' in Lib/dbm/dumb.py (GH-144060) files: M Lib/dbm/dumb.py diff --git a/Lib/dbm/dumb.py b/Lib/dbm/dumb.py index 1bc239a84fff83..c1c38da5101a57 100644 --- a/Lib/dbm/dumb.py +++ b/Lib/dbm/dumb.py @@ -9,7 +9,7 @@ - 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) _______________________________________________ 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]
