diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2016-06-14 09:51:28 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2016-06-14 09:51:28 (GMT) |
commit | 4762d5d5d1d5d5f2ddd113ff92e4e342a7e47a90 (patch) | |
tree | 4d0fdd3ae94e6e732aea0b5dc5dd76aa07d7ffba | |
parent | 255bbf2d2501974f25d9da201c3119cbca863f5a (diff) | |
parent | 48b13f042746d4c8bf369877e3f40c3e0bbee1b7 (diff) | |
download | cpython-4762d5d5d1d5d5f2ddd113ff92e4e342a7e47a90.zip cpython-4762d5d5d1d5d5f2ddd113ff92e4e342a7e47a90.tar.gz cpython-4762d5d5d1d5d5f2ddd113ff92e4e342a7e47a90.tar.bz2 |
Merge from 3.5
-rw-r--r-- | Doc/library/sqlite3.rst | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst index ae4c7c4..605d8d3 100644 --- a/Doc/library/sqlite3.rst +++ b/Doc/library/sqlite3.rst @@ -489,10 +489,6 @@ Connection Objects :mod:`sqlite3` module will return Unicode objects for ``TEXT``. If you want to return bytestrings instead, you can set it to :class:`bytes`. - For efficiency reasons, there's also a way to return :class:`str` objects - only for non-ASCII data, and :class:`bytes` otherwise. To activate it, set - this attribute to :const:`sqlite3.OptimizedUnicode`. - You can also set it to any other callable that accepts a single bytestring parameter and returns the resulting object. |