]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
- Removed stale names from ``sqlalchemy.orm.interfaces.__all__`` and
authorMike Bayer <mike_mp@zzzcomputing.com>
Thu, 27 Feb 2014 00:27:22 +0000 (19:27 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 27 Feb 2014 00:27:22 +0000 (19:27 -0500)
refreshed with current names, so that an ``import *`` from this
module again works.
fixes #2975

doc/build/changelog/changelog_08.rst
lib/sqlalchemy/orm/interfaces.py

index 0a081d05299cd51273dc9348f70d4e43d97b8a0a..fbc59c6c6e6119e0d132ce633ea542f7473a538b 100644 (file)
@@ -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
index 3d5559be9ff2130d46b8f28a32960d6c5f6b27d3..1b0bf48a99e5b897d2fb959d9007eab0da501c36 100644 (file)
@@ -31,16 +31,16 @@ __all__ = (
     'AttributeExtension',
     'EXT_CONTINUE',
     'EXT_STOP',
-    'ExtensionOption',
-    'InstrumentationManager',
+    'ONETOMANY',
+    'MANYTOMANY',
+    'MANYTOONE',
+    'NOT_EXTENSION',
     'LoaderStrategy',
     'MapperExtension',
     'MapperOption',
     'MapperProperty',
     'PropComparator',
-    'PropertyOption',
     'SessionExtension',
-    'StrategizedOption',
     'StrategizedProperty',
     )