From d4f948e826abb886e853298eb537d4bd8a476f8b Mon Sep 17 00:00:00 2001 From: adrian Date: Sat, 2 Apr 2011 21:46:28 +0000 Subject: [PATCH] Fixed #15743 -- Fixed tense in a docstring in db/models/base.py. Thanks, jMyles git-svn-id: http://code.djangoproject.com/svn/django/trunk@16006 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/db/models/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/db/models/base.py b/django/db/models/base.py index 4aa6cfa741f..d352b9d5aea 100644 --- a/django/db/models/base.py +++ b/django/db/models/base.py @@ -389,7 +389,7 @@ def __hash__(self): def __reduce__(self): """ - Provide pickling support. Normally, this just dispatches to Python's + Provides pickling support. Normally, this just dispatches to Python's standard handling. However, for models with deferred field loading, we need to do things manually, as they're dynamically created classes and only module-level classes can be pickled by the default path.