diff options
author | Dong-hee Na <donghee.na92@gmail.com> | 2020-05-01 12:15:35 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-01 12:15:35 (GMT) |
commit | 8727664557cd44dcd00612ccba816942e8f885ab (patch) | |
tree | f6e60550a8862e5e699c94b9c16e3ae383429b46 /Misc | |
parent | b796b3fb48283412d3caf52323c69690e5818d3d (diff) | |
download | cpython-8727664557cd44dcd00612ccba816942e8f885ab.zip cpython-8727664557cd44dcd00612ccba816942e8f885ab.tar.gz cpython-8727664557cd44dcd00612ccba816942e8f885ab.tar.bz2 |
bpo-32494: Use gdbm_count for dbm_length if possible (GH-19814)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2020-04-30-22-25-08.bpo-32494.1xaU5l.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2020-04-30-22-25-08.bpo-32494.1xaU5l.rst b/Misc/NEWS.d/next/Library/2020-04-30-22-25-08.bpo-32494.1xaU5l.rst new file mode 100644 index 0000000..3989700 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2020-04-30-22-25-08.bpo-32494.1xaU5l.rst @@ -0,0 +1,2 @@ +Update :mod:`dbm.gnu` to use gdbm_count if possible when calling +:func:`len`. Patch by Dong-hee Na. |