From: Mike Bayer Date: Thu, 27 Feb 2014 00:27:22 +0000 (-0500) Subject: - Removed stale names from ``sqlalchemy.orm.interfaces.__all__`` and X-Git-Tag: rel_0_8_6~22 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a3ad92de4b1ba68de67a42ea758063e7186cff0c;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git - Removed stale names from ``sqlalchemy.orm.interfaces.__all__`` and refreshed with current names, so that an ``import *`` from this module again works. fixes #2975 --- diff --git a/doc/build/changelog/changelog_08.rst b/doc/build/changelog/changelog_08.rst index 72bd3635ed..611473144d 100644 --- a/doc/build/changelog/changelog_08.rst +++ b/doc/build/changelog/changelog_08.rst @@ -8,6 +8,18 @@ .. include:: changelog_07.rst :start-line: 5 +.. changelog:: + :version: 0.8.6 + + .. change:: + :tags: orm, bug + :versions: 0.9.4 + :tickets: 2975 + + Removed stale names from ``sqlalchemy.orm.interfaces.__all__`` and + refreshed with current names, so that an ``import *`` from this + module again works. + .. changelog:: :version: 0.8.5 :released: February 19, 2014 diff --git a/lib/sqlalchemy/orm/interfaces.py b/lib/sqlalchemy/orm/interfaces.py index c01b7d873a..cb4351dabb 100644 --- a/lib/sqlalchemy/orm/interfaces.py +++ b/lib/sqlalchemy/orm/interfaces.py @@ -28,16 +28,16 @@ __all__ = ( 'AttributeExtension', 'EXT_CONTINUE', 'EXT_STOP', - 'ExtensionOption', - 'InstrumentationManager', + 'ONETOMANY', + 'MANYTOMANY', + 'MANYTOONE', + 'NOT_EXTENSION', 'LoaderStrategy', 'MapperExtension', 'MapperOption', 'MapperProperty', 'PropComparator', - 'PropertyOption', 'SessionExtension', - 'StrategizedOption', 'StrategizedProperty', )