diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2019-09-17 06:20:56 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-17 06:20:56 (GMT) |
commit | f669581a9527afb0d2325f9845a86715c0ba365d (patch) | |
tree | 964f3dd5596e65d33e5349497025b44e070f33b9 /Misc | |
parent | dfd34a9cd58e8150c324190f746de919e140abe8 (diff) | |
download | cpython-f669581a9527afb0d2325f9845a86715c0ba365d.zip cpython-f669581a9527afb0d2325f9845a86715c0ba365d.tar.gz cpython-f669581a9527afb0d2325f9845a86715c0ba365d.tar.bz2 |
bpo-38185: Fixed case-insensitive string comparison in sqlite3.Row indexing. (GH-16190)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2019-09-16-19-12-57.bpo-38185.zYWppY.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-09-16-19-12-57.bpo-38185.zYWppY.rst b/Misc/NEWS.d/next/Library/2019-09-16-19-12-57.bpo-38185.zYWppY.rst new file mode 100644 index 0000000..2260db6 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2019-09-16-19-12-57.bpo-38185.zYWppY.rst @@ -0,0 +1 @@ +Fixed case-insensitive string comparison in :class:`sqlite3.Row` indexing. |