summaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2012-10-18 12:29:41 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2012-10-18 12:29:41 -0400
commitba67f7dbc5eb7a1ed2a3e1b56df72a837130f7bb (patch)
tree973b833e6d31c076c25fb6c169b383f8e4cd0d7a /CHANGES
parent2484ef34c27f3342e62bd6285bb3668e2c913090 (diff)
downloadsqlalchemy-ba67f7dbc5eb7a1ed2a3e1b56df72a837130f7bb.tar.gz
- [bug] TypeDecorator now includes a generic repr()
that works in terms of the "impl" type by default. This is a behavioral change for those TypeDecorator classes that specify a custom __init__ method; those types will need to re-define __repr__() if they need __repr__() to provide a faithful constructor representation. [ticket:2594]
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES8
1 files changed, 8 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index 97f5061c0..084ab4ead 100644
--- a/CHANGES
+++ b/CHANGES
@@ -716,6 +716,14 @@ underneath "0.7.xx".
but not ForeignKeyConstraint or CheckConstraint.
[ticket:2410]
+ - [bug] TypeDecorator now includes a generic repr()
+ that works in terms of the "impl" type by default.
+ This is a behavioral change for those TypeDecorator
+ classes that specify a custom __init__ method; those
+ types will need to re-define __repr__() if they need
+ __repr__() to provide a faithful constructor representation.
+ [ticket:2594]
+
- [bug] column.label(None) now produces an
anonymous label, instead of returning the
column object itself, consistent with the behavior