From c1555984e6c91fe571e4247d3d41ea74db456250 Mon Sep 17 00:00:00 2001 From: Dong-hee Na Date: Sun, 23 Jul 2023 23:40:41 +0900 Subject: [PATCH] gh-107122: Update what's news for dbm.*dbm.clear() method --- Doc/whatsnew/3.13.rst | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Doc/whatsnew/3.13.rst b/Doc/whatsnew/3.13.rst index 1d34d8a0fa463c..b7d3942b1b085f 100644 --- a/Doc/whatsnew/3.13.rst +++ b/Doc/whatsnew/3.13.rst @@ -101,6 +101,13 @@ array It can be used instead of ``'u'`` type code, which is deprecated. (Contributed by Inada Naoki in :gh:`80480`.) +dbm +--- + +* Add :meth:`dbm.gdbm.clear` and :meth:`dbm.ndbm.clear` that remove all items + from the database. + (Contributed by Dong-hee Na in :gh:`107122`.) + io --