barryp@host-145-114-107-208.midco.net [Mon, 08 Jun 2009 17:37:21 -0500] rev 79
Added tag 2.0alpha2 for changeset 42f57fdc53a5
barryp@host-145-114-107-208.midco.net [Mon, 08 Jun 2009 17:37:15 -0500] rev 78
Update version numbers so we can tag the current state
barryp@host-42-60-230-24.midco.net [Mon, 13 Oct 2008 12:47:40 -0500] rev 77
Fix problem found when running unittests under Python 2.6: datetime.time.isoformat()
doesn't take a 'sep' argument like datetime.datetime.isoformat() does.
barryp@host-42-60-230-24.midco.net [Tue, 23 Sep 2008 21:42:09 -0500] rev 76
Minor tweaks for compatibility with Python 2.3 and 2.4. The biggest
one is Python 2.3 which doesn't have the Decimal type, use float instead.
barryp@host-42-60-230-24.midco.net [Mon, 22 Sep 2008 16:05:12 -0500] rev 75
Oops, one line that was deleted snuck back in, was harmless though.
barryp@host-42-60-230-24.midco.net [Mon, 22 Sep 2008 14:49:07 -0500] rev 74
Tagged 2.0 alpha 1
barryp@host-42-60-230-24.midco.net [Mon, 22 Sep 2008 14:43:03 -0500] rev 73
A few minor tweaks to the django backend, it seems to pass all Django unittests now!
barryp@host-42-60-230-24.midco.net [Sun, 21 Sep 2008 23:38:51 -0500] rev 72
Get the packaging cleaned up somewhat.
barryp@host-42-60-230-24.midco.net [Sun, 21 Sep 2008 15:43:59 -0500] rev 71
Fix problem where I used the wrong attribute name to access an Exeption's message.
barryp@host-42-60-230-24.midco.net [Sun, 21 Sep 2008 15:27:38 -0500] rev 70
Subclassed bpgsql.Cursor to return rows as tuples instead of lists, to
satisfy Django regressiontests/backends doctests.
barryp@host-42-60-230-24.midco.net [Sun, 21 Sep 2008 15:06:54 -0500] rev 69
Add a Django 1.0 backend that passes a lot, but not all, of the Django unittests.
barryp@host-42-60-230-24.midco.net [Sun, 21 Sep 2008 13:41:57 -0500] rev 68
Reorganize a bit so the Cursor.rowcount attribute can show usable
values for operations other than SELECT, such as INSERT, UPDATE, and DELETE.
This is something the Django unittests are looking for.
barryp@host-42-60-230-24.midco.net [Sun, 21 Sep 2008 11:20:36 -0500] rev 67
Fixed problem preventing Connection class from being subclassed.
barryp@host-42-60-230-24.midco.net [Sat, 20 Sep 2008 14:41:03 -0500] rev 66
Be consistent about the syntax used for raising exceptions, use the modern
style that will be required in Python 3.0
barryp@host-42-60-230-24.midco.net [Sat, 20 Sep 2008 13:32:19 -0500] rev 65
Ran pylint, made changes to help improve code quality.
barryp@host-42-60-230-24.midco.net [Sat, 20 Sep 2008 12:37:45 -0500] rev 64
Rework type conversions to help it come closer to passing Django unittests.
Seems the trick is to convert unicode to utf-8 before doing string escapes.
barryp@host-42-60-230-24.midco.net [Sat, 20 Sep 2008 11:10:29 -0500] rev 63
Took out logging calls, found after doing some profiling that the hit is pretty significant.
barryp@host-42-60-230-24.midco.net [Wed, 17 Sep 2008 20:43:35 -0500] rev 62
Tweak a few minor things to allow it to start to work as a Django 1.0 DB backend.
barryp@host-42-60-230-24.midco.net [Thu, 12 Jun 2008 23:54:01 -0500] rev 61
Cleanup the organization of the code and rename conversion functions to
be more descriptive.
barryp@host-42-60-230-24.midco.net [Thu, 12 Jun 2008 23:28:55 -0500] rev 60
Move the _TypeManager functionality right into the Connection class.
It's easier to deal with, and the Connection class can be subclassed
to extend the new _initialize_types method to add more types.