summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2016-02-21 20:52:43 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2016-02-21 20:52:43 -0500
commit01809bddff5b6e93010eb139aed54526c6e6c058 (patch)
treee8a31670e7dffdce04802de112edc2f7ea563e1c /doc
parent6713817e1186cd1e36c9aea9d89a30bc299ffe27 (diff)
downloadsqlalchemy-01809bddff5b6e93010eb139aed54526c6e6c058.tar.gz
- Fixed bug in "to_list" conversion where a single bytes object
would be turned into a list of individual characters. This would impact among other things using the :meth:`.Query.get` method on a primary key that's a bytes object. fixes #3660
Diffstat (limited to 'doc')
-rw-r--r--doc/build/changelog/changelog_10.rst9
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/build/changelog/changelog_10.rst b/doc/build/changelog/changelog_10.rst
index fa1be4c16..36152c236 100644
--- a/doc/build/changelog/changelog_10.rst
+++ b/doc/build/changelog/changelog_10.rst
@@ -19,6 +19,15 @@
:version: 1.0.13
.. change::
+ :tags: bug, py3k
+ :tickets: 3660
+
+ Fixed bug in "to_list" conversion where a single bytes object
+ would be turned into a list of individual characters. This would
+ impact among other things using the :meth:`.Query.get` method
+ on a primary key that's a bytes object.
+
+ .. change::
:tags: bug, orm
:tickets: 3658