]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Note obsolescence
authorGuido van Rossum <guido@python.org>
Wed, 11 Sep 1996 23:34:32 +0000 (23:34 +0000)
committerGuido van Rossum <guido@python.org>
Wed, 11 Sep 1996 23:34:32 +0000 (23:34 +0000)
Tools/scripts/classfix.py

index 09a94006d4e69321073057044915ba11f898a08d..e6760519900a270420a77651259e6e138d4eeb09 100755 (executable)
@@ -1,9 +1,13 @@
 #! /usr/local/bin/python
 
+# This script is obsolete -- it is kept for historical purposes only.
+#
 # Fix Python source files to use the new class definition syntax, i.e.,
+# the syntax used in Python versions before 0.9.8:
 #      class C() = base(), base(), ...: ...
-# is changed to
+# is changed to the current syntax:
 #      class C(base, base, ...): ...
+#
 # The script uses heuristics to find class definitions that usually
 # work but occasionally can fail; carefully check the output!
 #