Issue #19795: Mark up None as literal text.

This commit is contained in:
Serhiy Storchaka 2016-10-19 16:29:26 +03:00
parent 9f2e377beb
commit ecf41da83e
50 changed files with 108 additions and 106 deletions

View file

@ -24,7 +24,7 @@ returns a new sorted list::
[1, 2, 3, 4, 5]
You can also use the :meth:`list.sort` method. It modifies the list
in-place (and returns *None* to avoid confusion). Usually it's less convenient
in-place (and returns ``None`` to avoid confusion). Usually it's less convenient
than :func:`sorted` - but if you don't need the original list, it's slightly
more efficient.