]> granicus.if.org Git - python/commitdiff
Fix two typos in what’s new (#11234).
authorÉric Araujo <merwok@netwok.org>
Sat, 19 Feb 2011 18:46:02 +0000 (18:46 +0000)
committerÉric Araujo <merwok@netwok.org>
Sat, 19 Feb 2011 18:46:02 +0000 (18:46 +0000)
Doc/whatsnew/3.2.rst

index 6d0a7d4d6e65223eb5547cb8b61baffc2d8e91d1..ac5d55647a1eb0efd1eeef0389a540b9880d3443 100644 (file)
@@ -373,7 +373,7 @@ module::
    >>> sysconfig.get_config_var('SOABI')    # find the version tag
    'cpython-32mu'
    >>> sysconfig.get_config_var('SO')       # find the full filename extension
-   'cpython-32mu.so'
+   '.cpython-32mu.so'
 
 .. seealso::
 
@@ -2199,7 +2199,7 @@ The :func:`~urllib.parse.urldefrag` function now returns a :term:`named tuple`::
     >>> r
     DefragResult(url='http://python.org/about/', fragment='target')
     >>> r[0]
-    'http://python.org/about/
+    'http://python.org/about/'
     >>> r.fragment
     'target'