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

« back to all changes in this revision

Viewing changes to lib/sqlalchemy/__init__.py

  • Committer: Bazaar Package Importer
  • Author(s): Piotr Ożarowski
  • Date: 2011-03-27 14:22:50 UTC
  • mfrom: (16.1.9 experimental)
  • Revision ID: james.westby@ubuntu.com-20110327142250-aip46dv6a3r2jwvs
Tags: 0.6.6-2
Upload to unstable

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# __init__.py
2
 
# Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 Michael Bayer mike_mp@zzzcomputing.com
 
1
# sqlalchemy/__init__.py
 
2
# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
3
3
#
4
4
# This module is part of SQLAlchemy and is released under
5
5
# the MIT License: http://www.opensource.org/licenses/mit-license.php
43
43
    subquery,
44
44
    text,
45
45
    tuple_,
 
46
    type_coerce,
46
47
    union,
47
48
    union_all,
48
49
    update,
113
114
 
114
115
__all__ = sorted(name for name, obj in locals().items()
115
116
                 if not (name.startswith('_') or inspect.ismodule(obj)))
116
 
                 
117
 
__version__ = '0.6.3'
 
117
 
 
118
__version__ = '0.6.6'
118
119
 
119
120
del inspect, sys