[Python-checkins] cpython (3.2): Fix instructions on how to rebuild some modules

eric.araujo python-checkins at python.org
Tue Nov 29 17:15:09 CET 2011


http://hg.python.org/cpython/rev/0f7253d6b1cc
changeset:   73787:0f7253d6b1cc
branch:      3.2
user:        Éric Araujo <merwok at netwok.org>
date:        Tue Nov 29 16:45:34 2011 +0100
summary:
  Fix instructions on how to rebuild some modules

files:
  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
--- a/Lib/keyword.py
+++ b/Lib/keyword.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/keyword.py
+    ./python Lib/keyword.py
 """
 
 __all__ = ["iskeyword", "kwlist"]
diff --git a/Lib/symbol.py b/Lib/symbol.py
--- 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
--- 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

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list