Commit be5e3420 authored by Guido van Rossum's avatar Guido van Rossum

Note obsolescence

parent 07886d0e
#! /usr/local/bin/python #! /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., # 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(), ...: ... # class C() = base(), base(), ...: ...
# is changed to # is changed to the current syntax:
# class C(base, base, ...): ... # class C(base, base, ...): ...
#
# The script uses heuristics to find class definitions that usually # The script uses heuristics to find class definitions that usually
# work but occasionally can fail; carefully check the output! # work but occasionally can fail; carefully check the output!
# #
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment