diff options
author | Georg Brandl <georg@python.org> | 2014-10-30 21:25:41 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2014-10-30 21:25:41 (GMT) |
commit | 93a56cdc3798f66f82f8c3d538b479df8931752e (patch) | |
tree | 31b5320243b711763d7e5a92db2a2744188e0f9c /Doc/whatsnew/3.0.rst | |
parent | aea7f4a8e27a2f3a512a9cafbee25e00247f548b (diff) | |
download | cpython-93a56cdc3798f66f82f8c3d538b479df8931752e.zip cpython-93a56cdc3798f66f82f8c3d538b479df8931752e.tar.gz cpython-93a56cdc3798f66f82f8c3d538b479df8931752e.tar.bz2 |
Doc: fix default role usage (except in unittest mock docs)
Diffstat (limited to 'Doc/whatsnew/3.0.rst')
-rw-r--r-- | Doc/whatsnew/3.0.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.0.rst b/Doc/whatsnew/3.0.rst index 71b87b8..9941130 100644 --- a/Doc/whatsnew/3.0.rst +++ b/Doc/whatsnew/3.0.rst @@ -164,7 +164,7 @@ Some well-known APIs no longer return lists: If the input sequences are not of equal length, :func:`map` will stop at the termination of the shortest of the sequences. For full - compatibility with `map` from Python 2.x, also wrap the sequences in + compatibility with :func:`map` from Python 2.x, also wrap the sequences in :func:`itertools.zip_longest`, e.g. ``map(func, *sequences)`` becomes ``list(map(func, itertools.zip_longest(*sequences)))``. |