PEPs 216, 235, 312: Fix more markup

This commit is contained in:
Berker Peksag 2017-01-24 18:23:46 +03:00
parent e511fb5c14
commit d5583179f4
3 changed files with 7 additions and 7 deletions

View File

@ -104,7 +104,7 @@ in docstrings.
At least the following must be available: At least the following must be available:
a. A tag that means "this is a Python `something`, guess what" a. A tag that means "this is a Python *something*, guess what"
Example: In the sentence "The POP3 class", we need to markup "POP3" Example: In the sentence "The POP3 class", we need to markup "POP3"
so. The parser will be able to guess it is a class from the contents so. The parser will be able to guess it is a class from the contents

View File

@ -74,8 +74,8 @@ the current rules for import on Windows:
import file import file
then if Python finds ``FiLe.py`` first, it raises a ``NameError``. It then if Python finds ``FiLe.py`` first, it raises a ``NameError``.
does *not* go on to find ``file.py``; indeed, it's impossible to It does *not* go on to find ``file.py``; indeed, it's impossible to
import any but the first case-insensitive match on ``sys.path``, import any but the first case-insensitive match on ``sys.path``,
and then only if case matches exactly in the first and then only if case matches exactly in the first
case-insensitive match. case-insensitive match.