diff options
author | Diana Clarke <diana.joan.clarke@gmail.com> | 2012-03-17 22:28:29 -0400 |
---|---|---|
committer | Diana Clarke <diana.joan.clarke@gmail.com> | 2012-03-17 22:28:29 -0400 |
commit | b60fdb094057a648850947f688eb15617cfd50d7 (patch) | |
tree | b163c5fc755a9d5ace7c97732a5d2f8160983f17 /lib/sqlalchemy/ext/mutable.py | |
parent | 920afb6127b5ee7f0abc2147d52677176a27232c (diff) | |
download | sqlalchemy-b60fdb094057a648850947f688eb15617cfd50d7.tar.gz |
typos in lib/sqlalchemy/ext
Diffstat (limited to 'lib/sqlalchemy/ext/mutable.py')
-rw-r--r-- | lib/sqlalchemy/ext/mutable.py | 2 |
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:: |