summaryrefslogtreecommitdiff
path: root/examples/versioning
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2012-07-28 17:05:50 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2012-07-28 17:05:50 -0400
commit22ba1c43b792953ae6f791512d276739c8c09eae (patch)
treebdf9f639b01426a8a2e1c8c61d35533026dd4265 /examples/versioning
parent27913554a85c308d81e6c018669d0246ceecc639 (diff)
downloadsqlalchemy-22ba1c43b792953ae6f791512d276739c8c09eae.tar.gz
-whitespace bonanza, contd
Diffstat (limited to 'examples/versioning')
-rw-r--r--examples/versioning/_lib.py2
-rw-r--r--examples/versioning/history_meta.py10
-rw-r--r--examples/versioning/test_versioning.py18
3 files changed, 15 insertions, 15 deletions
diff --git a/examples/versioning/_lib.py b/examples/versioning/_lib.py
index d5f2cb0b7..ec0da4709 100644
--- a/examples/versioning/_lib.py
+++ b/examples/versioning/_lib.py
@@ -1,7 +1,7 @@
"""copy of ComparableEntity and eq_() from test.lib.
This is just to support running the example outside of
-the SQLA testing environment which is no longer part of
+the SQLA testing environment which is no longer part of
SQLAlchemy as of 0.7.
"""
diff --git a/examples/versioning/history_meta.py b/examples/versioning/history_meta.py
index 1226a8f62..533599394 100644
--- a/examples/versioning/history_meta.py
+++ b/examples/versioning/history_meta.py
@@ -71,9 +71,9 @@ def _history_mapper(local_mapper):
versioned_cls = type.__new__(type, "%sHistory" % cls.__name__, bases, {})
m = mapper(
- versioned_cls,
- table,
- inherits=super_history_mapper,
+ versioned_cls,
+ table,
+ inherits=super_history_mapper,
polymorphic_on=polymorphic_on,
polymorphic_identity=local_mapper.polymorphic_identity
)
@@ -129,9 +129,9 @@ def create_version(obj, session, deleted = False):
try:
prop = obj_mapper.get_property_by_column(obj_col)
except UnmappedColumnError:
- # in the case of single table inheritance, there may be
+ # in the case of single table inheritance, there may be
# columns on the mapped table intended for the subclass only.
- # the "unmapped" status of the subclass column on the
+ # the "unmapped" status of the subclass column on the
# base class is a feature of the declarative module as of sqla 0.5.2.
continue
diff --git a/examples/versioning/test_versioning.py b/examples/versioning/test_versioning.py
index 389dba918..9781fdc5d 100644
--- a/examples/versioning/test_versioning.py
+++ b/examples/versioning/test_versioning.py
@@ -185,8 +185,8 @@ class TestVersioning(TestCase):
eq_(
sess.query(BaseClassHistory).order_by(BaseClassHistory.id).all(),
[
- SubClassSeparatePkHistory(id=1, name=u'sep1', type=u'sep', version=1),
- BaseClassHistory(id=2, name=u'base1', type=u'base', version=1),
+ SubClassSeparatePkHistory(id=1, name=u'sep1', type=u'sep', version=1),
+ BaseClassHistory(id=2, name=u'base1', type=u'base', version=1),
SubClassSamePkHistory(id=3, name=u'same1', type=u'same', version=1)
]
)
@@ -196,9 +196,9 @@ class TestVersioning(TestCase):
eq_(
sess.query(BaseClassHistory).order_by(BaseClassHistory.id, BaseClassHistory.version).all(),
[
- SubClassSeparatePkHistory(id=1, name=u'sep1', type=u'sep', version=1),
- BaseClassHistory(id=2, name=u'base1', type=u'base', version=1),
- SubClassSamePkHistory(id=3, name=u'same1', type=u'same', version=1),
+ SubClassSeparatePkHistory(id=1, name=u'sep1', type=u'sep', version=1),
+ BaseClassHistory(id=2, name=u'base1', type=u'base', version=1),
+ SubClassSamePkHistory(id=3, name=u'same1', type=u'same', version=1),
SubClassSamePkHistory(id=3, name=u'same1', type=u'same', version=2)
]
)
@@ -207,10 +207,10 @@ class TestVersioning(TestCase):
eq_(
sess.query(BaseClassHistory).order_by(BaseClassHistory.id, BaseClassHistory.version).all(),
[
- SubClassSeparatePkHistory(id=1, name=u'sep1', type=u'sep', version=1),
- BaseClassHistory(id=2, name=u'base1', type=u'base', version=1),
- BaseClassHistory(id=2, name=u'base1mod', type=u'base', version=2),
- SubClassSamePkHistory(id=3, name=u'same1', type=u'same', version=1),
+ SubClassSeparatePkHistory(id=1, name=u'sep1', type=u'sep', version=1),
+ BaseClassHistory(id=2, name=u'base1', type=u'base', version=1),
+ BaseClassHistory(id=2, name=u'base1mod', type=u'base', version=2),
+ SubClassSamePkHistory(id=3, name=u'same1', type=u'same', version=1),
SubClassSamePkHistory(id=3, name=u'same1', type=u'same', version=2)
]
)