]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
``Tools/cases_generator``: Fix typos and incorrect comments. (#114892)
authorKirill Podoprigora <kirill.bast9@mail.ru>
Sat, 3 Feb 2024 01:52:58 +0000 (04:52 +0300)
committerGitHub <noreply@github.com>
Sat, 3 Feb 2024 01:52:58 +0000 (17:52 -0800)
Tools/cases_generator/opcode_id_generator.py
Tools/cases_generator/opcode_metadata_generator.py
Tools/cases_generator/py_metadata_generator.py
Tools/cases_generator/uop_metadata_generator.py

index dbea3d0b622c87f6778db410ab08a05282eac96c..5a3009a5c04c27bb79e8e02b9c39e24f80036154 100644 (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
index 1826a0b645c3b8675cf4dbc3c85053722bb223df..3e9fa3e26daa539e98beac8776479e27a8aa1a27 100644 (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
index 43811fdacc8a9e141900f2313068e1c816be2d75..0dbcd599f9d4d98a836b6090d62b0224165245ec 100644 (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
index d4f3a096d2acc18def9d681ebcc672a52ed37ee0..9083ecc48bdf5b8935e7eb5cb3c71b8d2ed376ff 100644 (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.
 """