]> granicus.if.org Git - python/commitdiff
#4000: fix several 2.x atavisms.
authorGeorg Brandl <georg@python.org>
Sat, 4 Oct 2008 18:33:26 +0000 (18:33 +0000)
committerGeorg Brandl <georg@python.org>
Sat, 4 Oct 2008 18:33:26 +0000 (18:33 +0000)
Doc/howto/functional.rst
Doc/library/collections.rst
Doc/library/reprlib.rst
Doc/reference/lexical_analysis.rst

index 2e09358bf2e8fbf10bb9682dc73a2e0701ef1d59..d0e31e8cd875d6f78240fe473f0f23341abdd16b 100644 (file)
@@ -69,9 +69,9 @@ output must only depend on its input.
 Some languages are very strict about purity and don't even have assignment
 statements such as ``a=3`` or ``c = a + b``, but it's difficult to avoid all
 side effects.  Printing to the screen or writing to a disk file are side
-effects, for example.  For example, in Python a ``print`` statement or a
-``time.sleep(1)`` both return no useful value; they're only called for their
-side effects of sending some text to the screen or pausing execution for a
+effects, for example.  For example, in Python a call to the :func:`print` or
+:func:`time.sleep` function both return no useful value; they're only called for
+their side effects of sending some text to the screen or pausing execution for a
 second.
 
 Python programs written in functional style usually won't go to the extreme of
@@ -1031,8 +1031,8 @@ value and an iterator for the elements with that key.
                  ...
                 ]
 
-    def get_state ((city, state)):
-        return state
+    def get_state (city_state):
+        return city_state[1]
 
     itertools.groupby(city_list, get_state) =>
       ('AL', iterator-1),
index 7dd88482dcd06059d62deec5e3f95ca5cf2bd348..8bcc2ac1be76f1c96e75e476225d03e27209c36d 100644 (file)
@@ -632,7 +632,7 @@ a fixed-width print format:
     ...     def __str__(self):
     ...         return 'Point: x=%6.3f  y=%6.3f  hypot=%6.3f' % (self.x, self.y, self.hypot)
 
-    >>> for p in Point(3, 4), Point(14, 5/7.):
+    >>> for p in Point(3, 4), Point(14, 5/7):
     ...     print(p)
     Point: x= 3.000  y= 4.000  hypot= 5.000
     Point: x=14.000  y= 0.714  hypot=14.018
index e50344245cd1cd618a28d2f6cf2b942080faeca6..aad6f6603432bf3a830179a3e363cc31c80fde8c 100644 (file)
@@ -126,7 +126,7 @@ for file objects could be added::
            if obj.name in ['<stdin>', '<stdout>', '<stderr>']:
                return obj.name
            else:
-               return `obj`
+               return repr(obj)
 
    aRepr = MyRepr()
    print aRepr.repr(sys.stdin)          # prints '<stdin>'
index 3ec06db0cfbe46c021fd11305537790a78a14245..1e43128582108af09f7ac3a9fa11fbd3c0cd7e9b 100644 (file)
@@ -676,8 +676,8 @@ Delimiters
 
 The following tokens serve as delimiters in the grammar::
 
-   (       )       [       ]       {       }      @
-   ,       :       .       `       =       ;
+   (       )       [       ]       {       }
+   ,       :       .       ;       @       =
    +=      -=      *=      /=      //=     %=
    &=      |=      ^=      >>=     <<=     **=