summaryrefslogtreecommitdiff
path: root/examples/inheritance/joined.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/inheritance/joined.py')
-rw-r--r--examples/inheritance/joined.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/inheritance/joined.py b/examples/inheritance/joined.py
index c6ce37146..6e0205e04 100644
--- a/examples/inheritance/joined.py
+++ b/examples/inheritance/joined.py
@@ -1,4 +1,4 @@
-"""this example illustrates a polymorphic load of two classes"""
+"""Joined-table (table-per-subclass) inheritance example."""
from sqlalchemy import Table, Column, Integer, String, \
ForeignKey, create_engine, inspect, or_
@@ -133,3 +133,4 @@ print(session.query(Company).\
session.commit()
+