Update pep-0008.txt (#854)

This commit is contained in:
Andre Delfino 2019-02-23 20:00:16 -03:00 committed by Barry Warsaw
parent 9cdb3fda14
commit 7b72f683be
1 changed files with 3 additions and 4 deletions

View File

@ -218,10 +218,9 @@ lines. Some web based tools may not offer dynamic line wrapping at all.
Some teams strongly prefer a longer line length. For code maintained
exclusively or primarily by a team that can reach agreement on this
issue, it is okay to increase the nominal line length from 80 to
100 characters (effectively increasing the maximum length to 99
characters), provided that comments and docstrings are still wrapped
at 72 characters.
issue, it is okay to increase the line length limit up to 99 characters,
provided that comments and docstrings are still wrapped at 72
characters.
The Python standard library is conservative and requires limiting
lines to 79 characters (and docstrings/comments to 72).