diff options
author | Shivank98 <shivankgautam98@gmail.com> | 2018-10-18 19:53:18 (GMT) |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2018-10-18 19:53:18 (GMT) |
commit | e3d1455fe472589c92b9e57b7d35addbb579edba (patch) | |
tree | cf853b3426147d3a95e7dd63f3c2e3acc3f439f6 /Tools/scripts | |
parent | 1deea5e53991b46351f6bb395b22365c9455ed88 (diff) | |
download | cpython-e3d1455fe472589c92b9e57b7d35addbb579edba.zip cpython-e3d1455fe472589c92b9e57b7d35addbb579edba.tar.gz cpython-e3d1455fe472589c92b9e57b7d35addbb579edba.tar.bz2 |
Update opcode.h header comment to mention the source data file (GH-9935)
This is intended to help code explorers find out more about what's defined there.
Diffstat (limited to 'Tools/scripts')
-rw-r--r-- | Tools/scripts/generate_opcode_h.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Tools/scripts/generate_opcode_h.py b/Tools/scripts/generate_opcode_h.py index 6622a3c..b184ffa 100644 --- a/Tools/scripts/generate_opcode_h.py +++ b/Tools/scripts/generate_opcode_h.py @@ -3,7 +3,8 @@ import sys import tokenize -header = """/* Auto-generated by Tools/scripts/generate_opcode_h.py */ +header = """ +/* Auto-generated by Tools/scripts/generate_opcode_h.py from Lib/opcode.py */ #ifndef Py_OPCODE_H #define Py_OPCODE_H #ifdef __cplusplus @@ -12,7 +13,7 @@ extern "C" { /* Instruction opcodes for compiled code */ -""" +""".lstrip() footer = """ /* EXCEPT_HANDLER is a special, implicit block type which is created when |