summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/ext/mutable.py
diff options
context:
space:
mode:
authorDiana Clarke <diana.joan.clarke@gmail.com>2012-03-17 22:28:29 -0400
committerDiana Clarke <diana.joan.clarke@gmail.com>2012-03-17 22:28:29 -0400
commitb60fdb094057a648850947f688eb15617cfd50d7 (patch)
treeb163c5fc755a9d5ace7c97732a5d2f8160983f17 /lib/sqlalchemy/ext/mutable.py
parent920afb6127b5ee7f0abc2147d52677176a27232c (diff)
downloadsqlalchemy-b60fdb094057a648850947f688eb15617cfd50d7.tar.gz
typos in lib/sqlalchemy/ext
Diffstat (limited to 'lib/sqlalchemy/ext/mutable.py')
-rw-r--r--lib/sqlalchemy/ext/mutable.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/ext/mutable.py b/lib/sqlalchemy/ext/mutable.py
index 9f1bb8928..5ca9727ec 100644
--- a/lib/sqlalchemy/ext/mutable.py
+++ b/lib/sqlalchemy/ext/mutable.py
@@ -180,7 +180,7 @@ not picklable, due to the fact that they contain weakrefs and function
callbacks. In our case, this is a good thing, since if this dictionary were
picklable, it could lead to an excessively large pickle size for our value
objects that are pickled by themselves outside of the context of the parent.
-The developer responsiblity here is only to provide a ``__getstate__`` method
+The developer responsibility here is only to provide a ``__getstate__`` method
that excludes the :meth:`~.MutableBase._parents` collection from the pickle
stream::