diff options
author | Petri Lehtinen <petri@digip.org> | 2012-02-09 19:09:03 (GMT) |
---|---|---|
committer | Petri Lehtinen <petri@digip.org> | 2012-02-09 19:09:03 (GMT) |
commit | bc35bebb458c6d3ad74adaf0d75f5156ab89fec9 (patch) | |
tree | 727e472a4ba702f48fb42d4b7246edc529d1aa67 /Modules/_sqlite/connection.h | |
parent | f0f9679d5ce6b65f4b41f1c42b24c6ab43923a41 (diff) | |
download | cpython-bc35bebb458c6d3ad74adaf0d75f5156ab89fec9.zip cpython-bc35bebb458c6d3ad74adaf0d75f5156ab89fec9.tar.gz cpython-bc35bebb458c6d3ad74adaf0d75f5156ab89fec9.tar.bz2 |
Undocument and clean up sqlite3.OptimizedUnicode
Closes #13921.
Diffstat (limited to 'Modules/_sqlite/connection.h')
-rw-r--r-- | Modules/_sqlite/connection.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Modules/_sqlite/connection.h b/Modules/_sqlite/connection.h index c8e2f7c..0c9734c 100644 --- a/Modules/_sqlite/connection.h +++ b/Modules/_sqlite/connection.h @@ -83,8 +83,7 @@ typedef struct /* Determines how bytestrings from SQLite are converted to Python objects: * - PyUnicode_Type: Python Unicode objects are constructed from UTF-8 bytestrings - * - OptimizedUnicode: Like before, but for ASCII data, only PyStrings are created. - * - PyBytes_Type: PyStrings are created as-is. + * - PyBytes_Type: The bytestrings are returned as-is. * - Any custom callable: Any object returned from the callable called with the bytestring * as single parameter. */ |