summaryrefslogtreecommitdiff
path: root/docs/tutorial01.txt
diff options
context:
space:
mode:
authorGeorg Bauer <gb@hugo.westfalen.de>2005-10-04 19:34:43 +0000
committerGeorg Bauer <gb@hugo.westfalen.de>2005-10-04 19:34:43 +0000
commit6e2b74d65e84938fdc05f2de40bcfe15efadc693 (patch)
tree43c91a20fff4506a76c2eaecb0318c793bcd0d1e /docs/tutorial01.txt
parent8c2b8aaee676131e6cbf6cb9e50393638db6c451 (diff)
i18n: merged r722:774 from trunk
git-svn-id: http://code.djangoproject.com/svn/django/branches/i18n@775 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/tutorial01.txt')
-rw-r--r--docs/tutorial01.txt12
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/tutorial01.txt b/docs/tutorial01.txt
index 629a2ab017..d69afa7392 100644
--- a/docs/tutorial01.txt
+++ b/docs/tutorial01.txt
@@ -385,23 +385,23 @@ Let's jump back into the Python interactive shell::
# Django provides a rich database lookup API that's entirely driven by
# keyword arguments.
>>> polls.get_object(id__exact=1)
- What's up
+ What's up?
>>> polls.get_object(question__startswith='What')
- What's up
+ What's up?
>>> polls.get_object(pub_date__year=2005)
- What's up
+ What's up?
>>> polls.get_object(id__exact=2)
Traceback (most recent call last):
...
PollDoesNotExist: Poll does not exist for {'id__exact': 2}
>>> polls.get_list(question__startswith='What')
- [What's up]
+ [What's up?]
# Lookup by a primary key is the most common case, so Django provides a
# shortcut for primary-key exact lookups.
# The following is identical to polls.get_object(id__exact=1).
>>> polls.get_object(pk=1)
- What's up
+ What's up?
# Make sure our custom method worked.
>>> p = polls.get_object(pk=1)
@@ -419,7 +419,7 @@ Let's jump back into the Python interactive shell::
# Choice objects have API access to their related Poll objects.
>>> c.get_poll()
- What's up
+ What's up?
# And vice versa: Poll objects get access to Choice objects.
>>> p.get_choice_list()