diff options
author | Erlend Egeberg Aasland <erlend.aasland@innova.no> | 2021-07-29 07:47:56 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-29 07:47:56 (GMT) |
commit | 5269c091458c5ea76eb625e4fabc9980b6309266 (patch) | |
tree | 2c39bdae29af27e9232facd337a41c5163bf0538 /Misc | |
parent | 8d0647485db5af2a0f0929d6509479ca45f1281b (diff) | |
download | cpython-5269c091458c5ea76eb625e4fabc9980b6309266.zip cpython-5269c091458c5ea76eb625e4fabc9980b6309266.tar.gz cpython-5269c091458c5ea76eb625e4fabc9980b6309266.tar.bz2 |
bpo-44688: Remove ASCII limitation from `sqlite3` collation names (GH-27395)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2021-07-20-23-28-26.bpo-44688.buFgz3.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2021-07-20-23-28-26.bpo-44688.buFgz3.rst b/Misc/NEWS.d/next/Library/2021-07-20-23-28-26.bpo-44688.buFgz3.rst new file mode 100644 index 0000000..15f6a52 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2021-07-20-23-28-26.bpo-44688.buFgz3.rst @@ -0,0 +1,2 @@ +:meth:`sqlite3.Connection.create_collation` now accepts non-ASCII collation +names. Patch by Erlend E. Aasland. |