Skip to content

Commit 6f62eac

Browse files
committed
Space out file sections consistently
1 parent 0920eb4 commit 6f62eac

22 files changed

+24
-2
lines changed

userland/utilities/basename.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
from .. import core
44

5+
56
parser = core.create_parser(
67
usage=("%prog NAME [SUFFIX]", "%prog OPTION... NAME..."),
78
description="Print the last component of each path NAME.",

userland/utilities/clear.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from .. import core
22

3-
# clear(1), roughly modelled off the ncurses implementation.
43

4+
# clear(1), roughly modelled off the ncurses implementation.
55

66
parser = core.create_parser(
77
usage=("%prog [OPTION]...",),

userland/utilities/dirname.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
from .. import core
44

5+
56
parser = core.create_parser(
67
usage=("%prog [OPTION]... NAME...",),
78
description=(

userland/utilities/echo.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
from .. import core
66

7+
78
ESCAPES_PATTERN = re.compile(
89
r"(\\0[0-7]{1,3}|\\x[0-9A-Za-z]{1,2}|\\[\\0abcefnrtv])",
910
re.UNICODE | re.VERBOSE,

userland/utilities/factor.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
from .. import core
66

7+
78
# List of small primes greater than 2; used for lookup.
89
SMALL_PRIMES = [3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47]
910

userland/utilities/groups.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55

66
from .. import core
77

8+
89
parser = core.create_parser(
910
usage=("%prog [USERNAME]...",),
1011
description="Print a list of groups for each USERNAME or the current user.",

userland/utilities/hostid.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
from .. import core
22

3+
34
parser = core.create_parser(
45
usage=("%prog",),
56
description="Print a 32-bit numeric host machine identifier.",

userland/utilities/id.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55

66
from .. import core
77

8+
89
parser = core.create_parser(
910
usage=("%prog [OPTION]... [USER]...",),
1011
description="Print user and group information for each USER or the current user.",

userland/utilities/logname.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
from .. import core
44

5+
56
parser = core.create_parser(
67
usage=("%prog",),
78
description="Print the current user's login name.",

userland/utilities/nologin.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
from .. import core
22

3+
34
parser = core.create_parser(
45
usage=("%prog",),
56
description="Politely refuse a login.",

0 commit comments

Comments
 (0)