Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e1886bf

Browse files
committed
Fix instructions on how to rebuild some modules
1 parent ff91306 commit e1886bf

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

Lib/keyword.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
To update the symbols in this file, 'cd' to the top directory of
88
the python source tree after building the interpreter and run:
99
10-
python Lib/keyword.py
10+
./python Lib/keyword.py
1111
"""
1212

1313
__all__ = ["iskeyword", "kwlist"]

Lib/symbol.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# To update the symbols in this file, 'cd' to the top directory of
88
# the python source tree after building the interpreter and run:
99
#
10-
# python Lib/symbol.py
10+
# ./python Lib/symbol.py
1111

1212
#--start constants--
1313
single_input = 256

Lib/token.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# To update the symbols in this file, 'cd' to the top directory of
88
# the python source tree after building the interpreter and run:
99
#
10-
# python Lib/token.py
10+
# ./python Lib/token.py
1111

1212
#--start constants--
1313
ENDMARKER = 0

0 commit comments

Comments
 (0)