+0.1.2
+- fixed a recursive call in schema that was somehow running 994 times then returning
+normally. broke nothing, slowed down everything. thanks to jpellerin for finding this.
0.1.1
- small fix to Function class so that expressions with a func.foo() use the type of the
Function object (i.e. the left side) as the type of the boolean expression, not the
def __getattr__(self, key):
"""proxies method calls to an underlying implementation object for methods not found
locally"""
- if not hasattr(self, '_impl'):
+ if not self.__dict__.has_key('_impl'):
raise AttributeError(key)
return getattr(self._impl, key)
from setuptools import setup, find_packages
setup(name = "SQLAlchemy",
- version = "0.1.1",
+ version = "0.1.2",
description = "Database Abstraction Library",
author = "Mike Bayer",
author_email = "mike_mp@zzzcomputing.com",