~ubuntu-branches/debian/jessie/sqlalchemy/jessie

« back to all changes in this revision

Viewing changes to lib/sqlalchemy/engine/base.py

  • Committer: Package Import Robot
  • Author(s): Piotr Ożarowski
  • Date: 2013-10-28 22:29:40 UTC
  • mfrom: (1.4.24)
  • Revision ID: package-import@ubuntu.com-20131028222940-wvyqffl4g617caun
Tags: 0.8.3-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
1433
1433
    echo = log.echo_property()
1434
1434
 
1435
1435
    def __repr__(self):
1436
 
        return 'Engine(%s)' % str(self.url)
 
1436
        return 'Engine(%r)' % self.url
1437
1437
 
1438
1438
    def dispose(self):
1439
1439
        """Dispose of the connection pool used by this :class:`.Engine`.