Consistency cleanup for README-migration.md

This commit is contained in:
Sam Lantinga 2022-12-29 10:44:35 -08:00
parent 138f632b59
commit ce412c2c71
2 changed files with 203 additions and 202 deletions

View file

@ -18,7 +18,7 @@ SDL_INCLUDE_DIR = SDL_ROOT / "include/SDL3"
def main():
if len(args.args) == 0 or (len(args.args) % 2) != 0:
print("Usage: %s [-h] [--skip-header-check] header {enum,function,hint,macro,structure,symbol} [old new ...]" % sys.argv[0])
print("Usage: %s [-h] [--skip-header-check] header {enum,function,hint,structure,symbol} [old new ...]" % sys.argv[0])
exit(1)
# Check whether we can still modify the ABI
@ -156,7 +156,10 @@ def add_symbol_to_migration(header, symbol_type, oldname, newname):
section_added = False
note = ("The following %ss have been renamed:" % symbol_type)
note_added = False
content = ("* %s => %s" % (oldname, newname))
if symbol_type == "function":
content = ("* %s() => %s()" % (oldname, newname))
else:
content = ("* %s => %s" % (oldname, newname))
content_added = False
mode = 0
i = 0
@ -197,7 +200,7 @@ if __name__ == "__main__":
parser = argparse.ArgumentParser(fromfile_prefix_chars='@')
parser.add_argument("--skip-header-check", action="store_true")
parser.add_argument("header");
parser.add_argument("type", choices=["enum", "function", "hint", "macro", "structure", "symbol"]);
parser.add_argument("type", choices=["enum", "function", "hint", "structure", "symbol"]);
parser.add_argument("args", nargs="*")
args = parser.parse_args()