Skip to content
This repository was archived by the owner on Oct 9, 2018. It is now read-only.

Commit 2c4be93

Browse files
committed
Change to a simple line limit of 99 characters.
It was decided to ditch the soft 80/hard 100 in favour of just 100. Now although people speak of figures like 80, 79 is actually the number they mean, because terminals will tend to need an extra, blank line if you write 80-character-wide lines. This is reflected in PEP 8: > Limit all lines to a maximum of 79 characters. > … > 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. Therefore, having decided to go with 100, we’re actually going with 99.
1 parent 83cb8fc commit 2c4be93

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

style/whitespace.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Whitespace [RFC]
22

3-
* Lines _should_ not exceed 80 characters, and _must_ not exceed 100 characters.
3+
* Lines must not exceed 99 characters.
44
* Use 4 spaces for indentation, _not_ tabs.
55
* No trailing whitespace at the end of lines or files.
66

0 commit comments

Comments
 (0)