summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-10-22 20:54:50 (GMT)
committerGuido van Rossum <guido@python.org>1997-10-22 20:54:50 (GMT)
commitf7a8b45d71b4808f11a6abed26c096014a8e58d2 (patch)
treecadcbf2cc3f6d070d63719c9973c8009d2f5a2b9 /Lib
parent12f86ade21f6f5c38b9d1c7fb42a3044a82aad9c (diff)
downloadcpython-f7a8b45d71b4808f11a6abed26c096014a8e58d2.zip
cpython-f7a8b45d71b4808f11a6abed26c096014a8e58d2.tar.gz
cpython-f7a8b45d71b4808f11a6abed26c096014a8e58d2.tar.bz2
Remove outdated comments.
Diffstat (limited to 'Lib')
-rwxr-xr-xLib/symbol.py8
1 files changed, 1 insertions, 7 deletions
diff --git a/Lib/symbol.py b/Lib/symbol.py
index 678e9ef..439d4c8 100755
--- a/Lib/symbol.py
+++ b/Lib/symbol.py
@@ -7,10 +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:
#
-# PYTHONPATH=Lib:Modules ./python Lib/symbol.py
-#
-# (this path allows the import of string.py, token.py, and regexmodule.so
-# for a site with no installation in place)
+# python Lib/symbol.py
#--start constants--
single_input = 256
@@ -87,6 +84,3 @@ def main():
if __name__ == "__main__":
main()
-
-#
-# end of file