[Python-checkins] r88442 - python/branches/py3k/Doc/whatsnew/3.2.rst

eric.araujo python-checkins at python.org
Sat Feb 19 19:46:02 CET 2011


Author: eric.araujo
Date: Sat Feb 19 19:46:02 2011
New Revision: 88442

Log:
Fix two typos in what’s new (#11234).


Modified:
   python/branches/py3k/Doc/whatsnew/3.2.rst

Modified: python/branches/py3k/Doc/whatsnew/3.2.rst
==============================================================================
--- python/branches/py3k/Doc/whatsnew/3.2.rst	(original)
+++ python/branches/py3k/Doc/whatsnew/3.2.rst	Sat Feb 19 19:46:02 2011
@@ -373,7 +373,7 @@
    >>> 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 @@
     >>> r
     DefragResult(url='http://python.org/about/', fragment='target')
     >>> r[0]
-    'http://python.org/about/
+    'http://python.org/about/'
     >>> r.fragment
     'target'
 


More information about the Python-checkins mailing list