[sqlalchemy] Re: can't import ARRAY from dialects.postgresql

2009-10-24 Thread sector119
The latest trunk. from sqlalchemy.dialects.postgresql import ARRAY Traceback (most recent call last): File console, line 1, in module ImportError: cannot import name ARRAY from sqlalchemy.dialects.postgresql.base import ARRAY from sqlalchemy.dialects import postgresql 'ARRAY' in

[sqlalchemy] Re: can't import ARRAY from dialects.postgresql

2009-10-24 Thread Michael Bayer
its missing. use sqlalchemy.dialects.postgresql.base.ARRAY. On Oct 24, 2009, at 6:19 AM, sector119 wrote: The latest trunk. from sqlalchemy.dialects.postgresql import ARRAY Traceback (most recent call last): File console, line 1, in module ImportError: cannot import name ARRAY from

[sqlalchemy] Re: can't import ARRAY from dialects.postgresql

2009-10-23 Thread sector119
It's on trunk. Elso can't import orm from sqlalchemy :/ On Oct 23, 6:00 pm, sector119 sector...@gmail.com wrote: Is there something wrong with ARRAY type in SA 0.6? no dialects/ dialect/__init__.py has ARRAY at __all__ !? --~--~-~--~~~---~--~~ You received this

[sqlalchemy] Re: can't import ARRAY from dialects.postgresql

2009-10-23 Thread Michael Bayer
sector119 wrote: It's on trunk. Elso can't import orm from sqlalchemy :/ On Oct 23, 6:00 pm, sector119 sector...@gmail.com wrote: Is there something wrong with ARRAY type in SA 0.6? no dialects/ dialect/__init__.py has ARRAY at __all__ !? ARRAY type is only within postgresql. You'd have