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 @@ -368,7 +368,7 @@ def main(
368368 deparsed_object .f .close ()
369369 if PYTHON_VERSION_TRIPLE [:2 ] != deparsed_object .version [:2 ]:
370370 sys .stdout .write (
371- f"\n # skipping running { deparsed_object .f .name } ; it is"
371+ f"\n # skipping running { deparsed_object .f .name } ; it is "
372372 f"{ version_tuple_to_str (deparsed_object .version , end = 2 )} , "
373373 "and we are "
374374 f"{ version_tuple_to_str (PYTHON_VERSION_TRIPLE , end = 2 )} \n "
Original file line number Diff line number Diff line change @@ -296,7 +296,7 @@ def tokens_append(j, token):
296296 bytecode = self .build_instructions (co )
297297
298298 if show_asm in ("both" , "before" ):
299- print ("\n # ---- before tokenization :" )
299+ print ("\n # ---- disassembly :" )
300300 self .insts = bytecode .disassemble_bytes (
301301 co .co_code ,
302302 varnames = co .co_varnames ,
@@ -682,7 +682,7 @@ def tokens_append(j, token):
682682 pass
683683
684684 if show_asm in ("both" , "after" ):
685- print ("\n # ---- after tokenization:" )
685+ print ("\n # ---- tokenization:" )
686686 for t in tokens :
687687 print (t .format (line_prefix = "" ))
688688 print ()
You can’t perform that action at this time.
0 commit comments