File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -372,7 +372,7 @@ def main(
372
372
deparsed_object .f .close ()
373
373
if PYTHON_VERSION_TRIPLE [:2 ] != deparsed_object .version [:2 ]:
374
374
sys .stdout .write (
375
- f"\n # skipping running { deparsed_object .f .name } ; it is"
375
+ f"\n # skipping running { deparsed_object .f .name } ; it is "
376
376
f"{ version_tuple_to_str (deparsed_object .version , end = 2 )} , "
377
377
"and we are "
378
378
f"{ version_tuple_to_str (PYTHON_VERSION_TRIPLE , end = 2 )} \n "
Original file line number Diff line number Diff line change @@ -222,7 +222,7 @@ def tokens_append(j, token):
222
222
bytecode = self .build_instructions (co )
223
223
224
224
if show_asm in ("both" , "before" ):
225
- print ("\n # ---- before tokenization :" )
225
+ print ("\n # ---- disassembly :" )
226
226
self .insts = bytecode .disassemble_bytes (
227
227
co .co_code ,
228
228
varnames = co .co_varnames ,
@@ -534,7 +534,7 @@ def tokens_append(j, token):
534
534
pass
535
535
536
536
if show_asm in ("both" , "after" ):
537
- print ("\n # ---- after tokenization:" )
537
+ print ("\n # ---- tokenization:" )
538
538
for t in tokens :
539
539
print (t .format (line_prefix = "" ))
540
540
print ()
You can’t perform that action at this time.
0 commit comments