summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew/3.2.rst
diff options
context:
space:
mode:
authorÉric Araujo <merwok@netwok.org>2011-02-19 18:46:02 (GMT)
committerÉric Araujo <merwok@netwok.org>2011-02-19 18:46:02 (GMT)
commite0e824d2ed10fc99b7ed7a2eb19fe95bedcdbc8e (patch)
tree1b8c1131233db47d13b0102a9f2859459a80e102 /Doc/whatsnew/3.2.rst
parent85dacf72670d4b25e76897597a3c3a94a909c028 (diff)
downloadcpython-e0e824d2ed10fc99b7ed7a2eb19fe95bedcdbc8e.zip
cpython-e0e824d2ed10fc99b7ed7a2eb19fe95bedcdbc8e.tar.gz
cpython-e0e824d2ed10fc99b7ed7a2eb19fe95bedcdbc8e.tar.bz2
Fix two typos in what’s new (#11234).
Diffstat (limited to 'Doc/whatsnew/3.2.rst')
-rw-r--r--Doc/whatsnew/3.2.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/whatsnew/3.2.rst b/Doc/whatsnew/3.2.rst
index 6d0a7d4..ac5d556 100644
--- a/Doc/whatsnew/3.2.rst
+++ b/Doc/whatsnew/3.2.rst
@@ -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'