~ubuntu-branches/debian/sid/sqlalchemy/sid

« back to all changes in this revision

Viewing changes to lib/sqlalchemy/orm/deprecated_interfaces.py

  • Committer: Package Import Robot
  • Author(s): Piotr Ożarowski
  • Date: 2014-06-27 20:17:13 UTC
  • mfrom: (1.4.28)
  • Revision ID: package-import@ubuntu.com-20140627201713-g6p1kq8q1qenztrv
Tags: 0.9.6-1
* New upstream release
* Remove Python 3.X build tag files, thanks to Matthias Urlichs for the
  patch (closes: #747852)
* python-fdb isn't in the Debian archive yet so default dialect for firebird://
  URLs is changed to obsolete kinterbasdb, thanks to Russell Stuart for the
  patch (closes: #752145)

Show diffs side-by-side

added added

removed removed

Lines of Context:
127
127
        return EXT_CONTINUE
128
128
 
129
129
    def init_instance(self, mapper, class_, oldinit, instance, args, kwargs):
130
 
        """Receive an instance when it's constructor is called.
 
130
        """Receive an instance when its constructor is called.
131
131
 
132
132
        This method is only called during a userland construction of
133
133
        an object.  It is not called when an object is loaded from the
140
140
        return EXT_CONTINUE
141
141
 
142
142
    def init_failed(self, mapper, class_, oldinit, instance, args, kwargs):
143
 
        """Receive an instance when it's constructor has been called,
 
143
        """Receive an instance when its constructor has been called,
144
144
        and raised an exception.
145
145
 
146
146
        This method is only called during a userland construction of