@@ -1410,11 +1410,11 @@ included in the :mod:`encodings` package). The codec uses mapping to encode and
14101410decode characters.
14111411
14121412Decoding mappings must map single string characters to single Unicode
1413- characters, integers (which are then interpreted as Unicode ordinals) or None
1413+ characters, integers (which are then interpreted as Unicode ordinals) or `` None``
14141414(meaning "undefined mapping" and causing an error).
14151415
14161416Encoding mappings must map single Unicode characters to single string
1417- characters, integers (which are then interpreted as Latin-1 ordinals) or None
1417+ characters, integers (which are then interpreted as Latin-1 ordinals) or `` None``
14181418(meaning "undefined mapping" and causing an error).
14191419
14201420The mapping objects provided must only support the __getitem__ mapping
@@ -1455,7 +1455,7 @@ The following codec API is special in that maps Unicode to Unicode.
14551455 *NULL * when an exception was raised by the codec.
14561456
14571457 The *mapping * table must map Unicode ordinal integers to Unicode ordinal
1458- integers or None (causing deletion of the character).
1458+ integers or `` None `` (causing deletion of the character).
14591459
14601460 Mapping tables need only provide the :meth:`__getitem__` interface; dictionaries
14611461 and sequences work well. Unmapped character ordinals (ones which cause a
@@ -1572,7 +1572,7 @@ They all return *NULL* or ``-1`` if an exception occurs.
15721572 resulting Unicode object.
15731573
15741574 The mapping table must map Unicode ordinal integers to Unicode ordinal integers
1575- or None (causing deletion of the character).
1575+ or `` None `` (causing deletion of the character).
15761576
15771577 Mapping tables need only provide the :meth:`__getitem__` interface; dictionaries
15781578 and sequences work well. Unmapped character ordinals (ones which cause a
0 commit comments