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/howto | |
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/howto')
-rw-r--r-- | Doc/howto/pyporting.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/pyporting.rst b/Doc/howto/pyporting.rst index 68fa33a..5d648ad 100644 --- a/Doc/howto/pyporting.rst +++ b/Doc/howto/pyporting.rst @@ -535,7 +535,7 @@ Update ``map`` for imbalanced input sequences ''''''''''''''''''''''''''''''''''''''''''''' With Python 2, when ``map`` was given more than one input sequence it would pad -the shorter sequences with `None` values, returning a sequence as long as the +the shorter sequences with ``None`` values, returning a sequence as long as the longest input sequence. With Python 3, if the input sequences to ``map`` are of unequal length, ``map`` |