Re: [Sqlalchemy-users] Minor patch for __all__ list in databases subpackage

2005-11-29 Thread Michael Bayer
OK ive gone thru and converted __ALL__ to __all__, and its bizarre how I didnt really notice it since it was never taking effect. now that it is, I made some cleanup to the import scheme. so you can, as someone suggested, just do: from sqlalchemy import * and that wil get you all the names

Re: [Sqlalchemy-users] Minor patch for __all__ list in databases subpackage

2005-11-29 Thread Michael Bayer
thanks for this. but in fact, it needs more than just a patch, it seems Im going to have to globally search and replace across the whole library since youll notice I used __ALL__ everywhere. I guess I never noticed it was supposed to be "__all__" since import * always worked ! Tim Golden wrote