diff options
author | Éric Araujo <merwok@netwok.org> | 2011-11-29 15:45:34 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2011-11-29 15:45:34 (GMT) |
commit | e1886bfaf43383d481566b2c6a317f2f7c0b2b5d (patch) | |
tree | 80772b51b87575235de8ce6da5169c1bd6995c7b /Lib | |
parent | ff913061270d85f9f6a01a2bbbf74fe3852c89ba (diff) | |
download | cpython-e1886bfaf43383d481566b2c6a317f2f7c0b2b5d.zip cpython-e1886bfaf43383d481566b2c6a317f2f7c0b2b5d.tar.gz cpython-e1886bfaf43383d481566b2c6a317f2f7c0b2b5d.tar.bz2 |
Fix instructions on how to rebuild some modules
Diffstat (limited to 'Lib')
-rwxr-xr-x | Lib/keyword.py | 2 | ||||
-rwxr-xr-x | Lib/symbol.py | 2 | ||||
-rwxr-xr-x | Lib/token.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/Lib/keyword.py b/Lib/keyword.py index a3788a6..dad39cc 100755 --- a/Lib/keyword.py +++ b/Lib/keyword.py @@ -7,7 +7,7 @@ This file is automatically generated; please don't muck it up! To update the symbols in this file, 'cd' to the top directory of the python source tree after building the interpreter and run: - python Lib/keyword.py + ./python Lib/keyword.py """ __all__ = ["iskeyword", "kwlist"] diff --git a/Lib/symbol.py b/Lib/symbol.py index e3fff34..679e5c8 100755 --- a/Lib/symbol.py +++ b/Lib/symbol.py @@ -7,7 +7,7 @@ # To update the symbols in this file, 'cd' to the top directory of # the python source tree after building the interpreter and run: # -# python Lib/symbol.py +# ./python Lib/symbol.py #--start constants-- single_input = 256 diff --git a/Lib/token.py b/Lib/token.py index 7e2bfcf..7ddd35e 100755 --- a/Lib/token.py +++ b/Lib/token.py @@ -7,7 +7,7 @@ __all__ = ['tok_name', 'ISTERMINAL', 'ISNONTERMINAL', 'ISEOF'] # To update the symbols in this file, 'cd' to the top directory of # the python source tree after building the interpreter and run: # -# python Lib/token.py +# ./python Lib/token.py #--start constants-- ENDMARKER = 0 |