summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/events.py
Commit message (Collapse)AuthorAgeFilesLines
...
* - they don't want "on_". First step, change the naming convention on EventsMike Bayer2010-12-301-3/+3
| | | | so that non-events are just _name.
* new calling style: event.listen(target, identifier, fn)Mike Bayer2010-12-011-8/+8
|
* - event documentation bonanzaMike Bayer2010-11-141-4/+52
|
* more docsMike Bayer2010-11-101-0/+37
|
* - move deprecated interfaces down to bottom of TOC, update verbiageMike Bayer2010-11-101-7/+60
| | | | | | | | | | | | | - more docs for engine, pool, DDL events - update DDL sequences documentation to use events - update DDL() docstring to refer to execute_if() - document parameters for DDLElement.execute_if() - add retval=True flag to Engine.on_before_execute(), on_before_cursor_execute(). wrap the function if retval=False, check for appropriate usage of the flag, add tests. - remove ScopedSession.mapper and tests entirely - remove ExtensionCarrier and tests - change remaining tests that use MapperExtension to use MapperEvents
* - basic docsMike Bayer2010-11-091-4/+25
| | | | - poolevent accepts Engine as a target
* - reorganizationMike Bayer2010-09-141-0/+160
- attrbutes.py splits into attribtes.py and instrumentation.py - all the various Event subclasses go into events.py modules - some ideas for orm events - move *Extension out to deprecated_interfaces