Re: [sqlalchemy] 0.8 - `q.filter(None)` used to do nothing, now generates "WHERE NULL"

2016-04-28 Thread Jonathan Vanasco
On Wednesday, April 27, 2016 at 5:46:11 PM UTC-4, kevin...@chownow.com wrote: > > Thank you again for all your hard work on SQLAlchemy. It's incredibly > useful. I'm pleasantly surprised by how few things broke when we moved from > SQLAlchemy 0.7.9 to the 1.0.12. > FYI, something that WILL bre

[sqlalchemy] Re: history_meta

2016-04-28 Thread Jonathan Vanasco
There are a lot of ways to handle versioning in SqlAlchemy. This is just one example. The docs show another approach as well (http://docs.sqlalchemy.org/en/latest/orm/examples.html#versioning-objects) It's not included, because it's just an example. It won't suit all cases and many people wi

Re: [sqlalchemy] unable to use SQLAlchemy with python2.7

2016-04-28 Thread Jonathan Vanasco
You have to install the python packages for each environment with their version of pip or easy_install. -- You received this message because you are subscribed to the Google Groups "sqlalchemy" group. To unsubscribe from this group and stop receiving emails from it, send an email to sqlalchemy

[sqlalchemy] history_meta

2016-04-28 Thread Nicholas Cole
I'm looking to create version tables for my objects. Is the history_meta.py example suitable for production use? Is there any reason that it isn't included in the actual sqlalchemy library rather than being kept separate as an 'example'? Best wishes, Nicholas -- You received this message be

Re: [sqlalchemy] unable to use SQLAlchemy with python2.7

2016-04-28 Thread Simon King
On Thu, Apr 28, 2016 at 11:45 AM, Rahul Raghunath wrote: > I'm currently running python 3.5. SQLAlchemy works perfectly well well > with it. > How ever, i wish to now use it with python 2.7, which is also installed on > my computer because the other compnents, such as http.server, are easier to >

[sqlalchemy] unable to use SQLAlchemy with python2.7

2016-04-28 Thread Rahul Raghunath
I'm currently running python 3.5. SQLAlchemy works perfectly well well with it. How ever, i wish to now use it with python 2.7, which is also installed on my computer because the other compnents, such as http.server, are easier to use with python 2.7. I'm having a hard time figuring out how to

Re: [sqlalchemy] Bug in BufferedColumnResultProxy class?

2016-04-28 Thread Piotr Dobrogost
On Wednesday, April 27, 2016 at 6:41:24 PM UTC+2, Mike Bayer wrote: > > > > On 04/27/2016 11:11 AM, Mike Bayer wrote: > > > > I'm improving our test suite by ensuring that result processors are > > fired off for all result proxy subtypes when caching is used as well and > > I will ensure the li