summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2014-07-08 08:56:41 -0400
committerTim Graham <timograham@gmail.com>2014-07-08 08:57:47 -0400
commitd8f7e00708dec84237954cde17a27e1afb657438 (patch)
treebd2de8715f596b54a809ae64a9a3081e9d599f07
parent837cad0f6242f5292b8a4811fc48fbfbefe92a47 (diff)
[1.6.x] Fixed #22978 -- Removed a USA-centric example that didn't add much.
Backport of 9f18b6bcb0 from master
-rw-r--r--docs/topics/db/models.txt7
1 files changed, 0 insertions, 7 deletions
diff --git a/docs/topics/db/models.txt b/docs/topics/db/models.txt
index 757bc8467f..2e50acda93 100644
--- a/docs/topics/db/models.txt
+++ b/docs/topics/db/models.txt
@@ -684,9 +684,6 @@ For example, this model has a few custom methods::
first_name = models.CharField(max_length=50)
last_name = models.CharField(max_length=50)
birth_date = models.DateField()
- address = models.CharField(max_length=100)
- city = models.CharField(max_length=50)
- state = models.CharField(max_length=2) # yes, this is America-centric
def baby_boomer_status(self):
"Returns the person's baby-boomer status."
@@ -698,10 +695,6 @@ For example, this model has a few custom methods::
else:
return "Post-boomer"
- def is_midwestern(self):
- "Returns True if this person is from the Midwest."
- return self.state in ('IL', 'WI', 'MI', 'IN', 'OH', 'IA', 'MO')
-
def _get_full_name(self):
"Returns the person's full name."
return '%s %s' % (self.first_name, self.last_name)