From ef2e14e675be14d74f5bc42c2d5c58927fca2e06 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=89ric=20Araujo?= Date: Sun, 26 Feb 2012 01:26:09 +0100 Subject: [PATCH] Fix instructions on how to rebuild some modules --- Lib/keyword.py | 2 +- Lib/symbol.py | 2 +- Lib/token.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Lib/keyword.py b/Lib/keyword.py index 8eb2860307e5..69794bda8c87 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 cf179e5ef35c..b4d4e13ab809 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 8d5cdaa1754a..34abf62016ac 100755 --- a/Lib/token.py +++ b/Lib/token.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/token.py +# ./python Lib/token.py #--start constants-- ENDMARKER = 0 -- 2.47.3