``Tools/cases_generator``: Fix typos and incorrect comments. (#114892)

This commit is contained in:
Kirill Podoprigora 2024-02-03 04:52:58 +03:00 committed by GitHub
parent f35c7c070c
commit f3cdd64de8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 6 additions and 6 deletions

View File

@ -1,6 +1,6 @@
"""Generate the list of opcode IDs.
Reads the instruction definitions from bytecodes.c.
Writes the IDs to opcode._ids.h by default.
Writes the IDs to opcode_ids.h by default.
"""
import argparse

View File

@ -1,6 +1,6 @@
"""Generate uop metedata.
"""Generate opcode metadata.
Reads the instruction definitions from bytecodes.c.
Writes the metadata to pycore_uop_metadata.h by default.
Writes the metadata to pycore_opcode_metadata.h by default.
"""
import argparse

View File

@ -1,6 +1,6 @@
"""Generate uop metedata.
"""Generate opcode metadata for Python.
Reads the instruction definitions from bytecodes.c.
Writes the metadata to pycore_uop_metadata.h by default.
Writes the metadata to _opcode_metadata.py by default.
"""
import argparse

View File

@ -1,4 +1,4 @@
"""Generate uop metedata.
"""Generate uop metadata.
Reads the instruction definitions from bytecodes.c.
Writes the metadata to pycore_uop_metadata.h by default.
"""