| Commit message (Expand) | Author | Age | Files | Lines |
| * | pyflakes mop-up | Jason Kirtland | 2007-08-19 | 3 | -4/+4 |
| * | 1. Module layout. sql.py and related move into a package called "sql". | Mike Bayer | 2007-08-18 | 7 | -20/+29 |
| * | - modified SQL operator functions to be module-level operators, allowing | Mike Bayer | 2007-08-18 | 1 | -3/+2 |
| * | - Added a "legacy" adapter to types, such that user-defined TypeEngine | Mike Bayer | 2007-08-17 | 1 | -0/+3 |
| * | - added close() method to Transaction. closes out a transaction using rollback | Mike Bayer | 2007-08-17 | 1 | -1/+1 |
| * | transactional session rolls back bound connection | Mike Bayer | 2007-08-17 | 1 | -0/+2 |
| * | - threadlocal TLConnection, when closes for real, forces parent TLSession | Mike Bayer | 2007-08-17 | 1 | -1/+0 |
| * | - added extra argument con_proxy to ConnectionListener interface checkout/che... | Mike Bayer | 2007-08-17 | 1 | -2/+0 |
| * | - session transaction closing tweak for threadlocal | Jason Kirtland | 2007-08-17 | 1 | -0/+2 |
| * | removed ridiculous LOrderedProp object | Mike Bayer | 2007-08-16 | 1 | -18/+1 |
| * | revert the _DefaultExtension thing, it added function calls | Mike Bayer | 2007-08-16 | 1 | -24/+22 |
| * | - moved test/orm/fixtures.py to testlib | Mike Bayer | 2007-08-16 | 4 | -46/+38 |
| * | Added session.prune(), releases unused objects in strong-ref identity maps. | Jason Kirtland | 2007-08-16 | 2 | -2/+29 |
| * | added 'inherit_foreign_keys' arg to mapper() | Mike Bayer | 2007-08-16 | 2 | -1/+12 |
| * | -removed print statements | Mike Bayer | 2007-08-15 | 1 | -1/+0 |
| * | mass has_key->__contains__ migration, [ticket:738] | Mike Bayer | 2007-08-15 | 8 | -25/+25 |
| * | - moved unicode schema ORM tests to unitofwork.py tests. mostly | Mike Bayer | 2007-08-15 | 1 | -1/+1 |
| * | removed init_attr() call, which has shown to not increase performance | Mike Bayer | 2007-08-15 | 2 | -15/+0 |
| * | cleanup | Mike Bayer | 2007-08-14 | 1 | -8/+4 |
| * | - fixed endless loop | Mike Bayer | 2007-08-14 | 1 | -1/+4 |
| * | - base_mapper() becomes a plain attribute | Mike Bayer | 2007-08-14 | 6 | -69/+62 |
| * | docstirng... | Mike Bayer | 2007-08-13 | 1 | -2/+2 |
| * | - a rudimental SessionExtension class has been added, allowing user-defined | Mike Bayer | 2007-08-13 | 2 | -4/+77 |
| * | Removed unused imports, other import adjustments per pyflakes | Jason Kirtland | 2007-08-13 | 5 | -11/+11 |
| * | Centralized some `try: import foo except: import other as foo` imports in util | Jason Kirtland | 2007-08-13 | 1 | -5/+1 |
| * | - scoped_session docs | Mike Bayer | 2007-08-12 | 1 | -1/+5 |
| * | #725 add query arg to id_chooser() | Mike Bayer | 2007-08-10 | 1 | -5/+6 |
| * | - merged mapper has_pks fix from r3239 0.3 branch | Mike Bayer | 2007-08-10 | 1 | -1/+4 |
| * | formatting tweaks | Mike Bayer | 2007-08-09 | 1 | -16/+16 |
| * | - added 'object_session' as classlevel method to Session | Mike Bayer | 2007-08-09 | 2 | -9/+20 |
| * | session docs, CHANGES updates | Mike Bayer | 2007-08-09 | 2 | -6/+147 |
| * | new session doc | Mike Bayer | 2007-08-09 | 1 | -36/+28 |
| * | - fix mssql compiling explicitly added alias twice | Ants Aasma | 2007-08-08 | 1 | -5/+1 |
| * | added missing methods/props to ScopedSession | Mike Bayer | 2007-08-08 | 1 | -2/+2 |
| * | - moved extension class init around so query() is available | Mike Bayer | 2007-08-07 | 1 | -3/+6 |
| * | - migrated 'desc', 'asc', and 'distinct' to be in the Operators framework | Mike Bayer | 2007-08-07 | 3 | -10/+4 |
| * | added 'asc' and 'desc' to PropComparator....this should be placed at a lower ... | Mike Bayer | 2007-08-06 | 1 | -0/+6 |
| * | - 'comparator' argument to composite() is a class | Mike Bayer | 2007-08-06 | 1 | -1/+1 |
| * | clean up some dead code in Query.filter_by | Ants Aasma | 2007-08-06 | 1 | -17/+3 |
| * | removing Query from __all__ was a little premature | Mike Bayer | 2007-08-06 | 1 | -1/+1 |
| * | docstring stuff | Mike Bayer | 2007-08-05 | 4 | -9/+109 |
| * | Added test coverage for freeform collection decorators | Jason Kirtland | 2007-08-05 | 1 | -46/+40 |
| * | - fix for [ticket:712], more unit tests | Mike Bayer | 2007-08-04 | 2 | -4/+4 |
| * | - added hooks for alternate session classes into sessionmaker | Mike Bayer | 2007-08-03 | 2 | -3/+9 |
| * | - removed enhance_classes from scoped_session, replaced with | Mike Bayer | 2007-08-03 | 1 | -16/+38 |
| * | small fix for filter() aliasing, upgraded elementtree examples to use 0.4 sty... | Mike Bayer | 2007-08-03 | 1 | -2/+1 |
| * | switch "if not len(x)" to "if not x" | Jonathan Ellis | 2007-08-03 | 3 | -5/+5 |
| * | switch (simple) occurences of 'if len(x)' to 'if x': find . -name '*.py' |xar... | Jonathan Ellis | 2007-08-03 | 7 | -14/+14 |
| * | docs | Mike Bayer | 2007-08-02 | 2 | -11/+30 |
| * | - fixed autoflush with count(), aggregates | Mike Bayer | 2007-08-02 | 1 | -0/+5 |