Account Options

  1. Sign in
The old Google Groups will be going away soon.
Switch to the new Google Groups.
Google Groups Home
« Groups Home
Message from discussion r12197 - django/trunk/docs/topics/db
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
nore...@djangoproject.com  
View profile  
 More options Jan 10 2010, 4:28 pm
From: nore...@djangoproject.com
Date: Sun, 10 Jan 2010 15:28:38 -0600 (CST)
Local: Sun, Jan 10 2010 4:28 pm
Subject: [Changeset] r12197 - django/trunk/docs/topics/db
Author: adrian
Date: 2010-01-10 15:28:37 -0600 (Sun, 10 Jan 2010)
New Revision: 12197

Modified:
   django/trunk/docs/topics/db/queries.txt
Log:
Fixed #12297 -- Fixed typo in docs/topics/db/queries.txt. Thanks, bertil and timo

Modified: django/trunk/docs/topics/db/queries.txt
===================================================================
--- django/trunk/docs/topics/db/queries.txt     2010-01-10 21:05:42 UTC (rev 12196)
+++ django/trunk/docs/topics/db/queries.txt     2010-01-10 21:28:37 UTC (rev 12197)
@@ -618,7 +618,7 @@

 To avoid this problem, simply save the ``QuerySet`` and reuse it::

-    >>> queryset = Poll.objects.all()
+    >>> queryset = Entry.objects.all()
     >>> print [p.headline for p in queryset] # Evaluate the query set.
     >>> print [p.pub_date for p in queryset] # Re-use the cache from the evaluation.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.