Explorar el Código

Updated docs/topics/db/queries.txt examples to use print() function.

Timothy Allen hace 8 años
padre
commit
5595db9504
Se han modificado 1 ficheros con 4 adiciones y 4 borrados
  1. 4 4
      docs/topics/db/queries.txt

+ 4 - 4
docs/topics/db/queries.txt

@@ -763,16 +763,16 @@ For example, repeatedly getting a certain index in a queryset object will query
 the database each time::
 
     >>> queryset = Entry.objects.all()
-    >>> print queryset[5] # Queries the database
-    >>> print queryset[5] # Queries the database again
+    >>> print(queryset[5]) # Queries the database
+    >>> print(queryset[5]) # Queries the database again
 
 However, if the entire queryset has already been evaluated, the cache will be
 checked instead::
 
     >>> queryset = Entry.objects.all()
     >>> [entry for entry in queryset] # Queries the database
-    >>> print queryset[5] # Uses cache
-    >>> print queryset[5] # Uses cache
+    >>> print(queryset[5]) # Uses cache
+    >>> print(queryset[5]) # Uses cache
 
 Here are some examples of other actions that will result in the entire queryset
 being evaluated and therefore populate the cache::