@@ -56,7 +56,7 @@ Python 2.6 incorporates new features and syntax from 3.0 while
5656remaining compatible with existing code by not removing older features
5757or syntax. When it's not possible to do that, Python 2.6 tries to do
5858what 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
6060usages that will become unsupported in 3.0.
6161
6262Some significant new packages have been added to the standard library,
109109Python 3.0 adds several new built-in functions and changes the
110110semantics of some existing builtins. Functions that are new in 3.0
111111such 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 `
113113module has versions with the new 3.0 semantics. Code written to be
114114compatible with 3.0 can do ``from future_builtins import hex, map `` as
115115necessary.
@@ -2739,13 +2739,13 @@ numbers.
27392739
27402740.. ======================================================================
27412741
2742- The :mod: `future_builtins ` module
2742+ The :mod: `! future_builtins ` module
27432743--------------------------------------
27442744
27452745Python 3.0 makes many changes to the repertoire of built-in
27462746functions, and most of the changes can't be introduced in the Python
274727472.x series because they would break compatibility.
2748- The :mod: `future_builtins ` module provides versions
2748+ The :mod: `! future_builtins ` module provides versions
27492749of these built-in functions that can be imported when writing
275027503.0-compatible code.
27512751
0 commit comments