]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-107122: Update what's news for dbm.*dbm.clear() method (gh-107135)
authorDong-hee Na <donghee.na@python.org>
Sun, 23 Jul 2023 15:08:50 +0000 (00:08 +0900)
committerGitHub <noreply@github.com>
Sun, 23 Jul 2023 15:08:50 +0000 (00:08 +0900)
Doc/whatsnew/3.13.rst
Misc/NEWS.d/next/Core and Builtins/2023-07-23-13-07-34.gh-issue-107122.9HFUyb.rst
Misc/NEWS.d/next/Core and Builtins/2023-07-23-21-16-54.gh-issue-107122.VNuNcq.rst

index 1d34d8a0fa463c5c4414260ecae3e75c6c7c5080..8ca0abf5525763a1f87eaa848f7a8d7fd986d44e 100644 (file)
@@ -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.gnu.gdbm.clear` and :meth:`dbm.ndbm.ndbm.clear`  methods that remove all items
+  from the database.
+  (Contributed by Dong-hee Na in :gh:`107122`.)
+
 io
 --
 
index c2e1c58c1b42c5e55b172bc4365b7ba68d5181ad..64ac8ac6df09b8d58bba1e3a7eb543e620f7f8df 100644 (file)
@@ -1 +1 @@
-Add :meth:`dbm.gdbm.clear` to :mod:`dbm.gdbm`. Patch By Dong-hee Na.
+Add :meth:`dbm.gnu.gdbm.clear` to :mod:`dbm.gnu`. Patch By Dong-hee Na.
index d63aeb54ae1454d3fa813ba233e81732e23fe87a..5b7cc98ddc64145f0f011f6ef921e182ca06c139 100644 (file)
@@ -1 +1 @@
-Add :meth:`dbm.ndbm.clear` to :mod:`dbm.ndbm`. Patch By Dong-hee Na.
+Add :meth:`dbm.ndbm.ndbm.clear` to :mod:`dbm.ndbm`. Patch By Dong-hee Na.