From 5dbb2cddb3b5aa68bc219ba6b070a15cd6612eee Mon Sep 17 00:00:00 2001 From: adustman Date: Fri, 7 Sep 2001 01:08:17 +0000 Subject: [PATCH] More stuff I forgot about. --- MySQLdb/CHANGELOG | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/MySQLdb/CHANGELOG b/MySQLdb/CHANGELOG index ccb90e7..8a0d7de 100644 --- a/MySQLdb/CHANGELOG +++ b/MySQLdb/CHANGELOG @@ -28,6 +28,8 @@ objects. You don't normally need to use it, but it might be useful for debugging. + * Return DECIMAL/NUMERIC columns as floats. + * A number of documentation updates. @@ -42,6 +44,15 @@ _mysql_exceptions.py, but these are imported into _mysql. This makes the binary (and source) significantly smaller. + * Reduced threadsafety to 1 (from 2), and ripped out a lot of the + crap that attempts to let you safely share a connection between + threads. If you are using transactions, you can only hand off the + connection from one thread to another after a commit or + rollback. Sharing a connection will hurt your performance anyway, + so give each thread it's own connection. + + * A Set class was added for use with SET columns. + * Loads of docstrings were added to take advantage of pydoc. * Operationally, there's not much difference.