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 /Doc/library | |
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 'Doc/library')
-rw-r--r-- | Doc/library/sqlite3.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst index 05064e4..6399bed 100644 --- a/Doc/library/sqlite3.rst +++ b/Doc/library/sqlite3.rst @@ -402,6 +402,10 @@ Connection Objects con.create_collation("reverse", None) + .. versionchanged:: 3.11 + The collation name can contain any Unicode character. Earlier, only + ASCII characters were allowed. + .. method:: interrupt() |