Skip to content

Commit 5eb56d1

Browse files
committed
Ignore future_builtins
1 parent a756a4b commit 5eb56d1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Doc/whatsnew/2.6.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Python 2.6 incorporates new features and syntax from 3.0 while
5656
remaining compatible with existing code by not removing older features
5757
or syntax. When it's not possible to do that, Python 2.6 tries to do
5858
what it can, adding compatibility functions in a
59-
:mod:`future_builtins` module and a :option:`!-3` switch to warn about
59+
:mod:`!future_builtins` module and a :option:`!-3` switch to warn about
6060
usages that will become unsupported in 3.0.
6161

6262
Some significant new packages have been added to the standard library,
@@ -109,7 +109,7 @@ are:
109109
Python 3.0 adds several new built-in functions and changes the
110110
semantics of some existing builtins. Functions that are new in 3.0
111111
such as :func:`bin` have simply been added to Python 2.6, but existing
112-
builtins haven't been changed; instead, the :mod:`future_builtins`
112+
builtins haven't been changed; instead, the :mod:`!future_builtins`
113113
module has versions with the new 3.0 semantics. Code written to be
114114
compatible with 3.0 can do ``from future_builtins import hex, map`` as
115115
necessary.
@@ -2739,13 +2739,13 @@ numbers.
27392739

27402740
.. ======================================================================
27412741
2742-
The :mod:`future_builtins` module
2742+
The :mod:`!future_builtins` module
27432743
--------------------------------------
27442744

27452745
Python 3.0 makes many changes to the repertoire of built-in
27462746
functions, and most of the changes can't be introduced in the Python
27472747
2.x series because they would break compatibility.
2748-
The :mod:`future_builtins` module provides versions
2748+
The :mod:`!future_builtins` module provides versions
27492749
of these built-in functions that can be imported when writing
27502750
3.0-compatible code.
27512751

0 commit comments

Comments
 (0)