From a3ad92de4b1ba68de67a42ea758063e7186cff0c Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Wed, 26 Feb 2014 19:27:22 -0500 Subject: [PATCH] - Removed stale names from ``sqlalchemy.orm.interfaces.__all__`` and refreshed with current names, so that an ``import *`` from this module again works. fixes #2975 --- doc/build/changelog/changelog_08.rst | 12 ++++++++++++ lib/sqlalchemy/orm/interfaces.py | 8 ++++---- 2 files changed, 16 insertions(+), 4 deletions(-) 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', ) -- 2.47.3