diff options
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. */ |