You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-03 08:49:51 +08:00
Fix typos
This commit is contained in:
@@ -114,7 +114,7 @@ class Python35Parser(Python34Parser):
|
||||
ifelsestmtl ::= testexpr c_stmts_opt jb_else else_suitel
|
||||
|
||||
# 3.5 Has jump optimization which can route the end of an
|
||||
# "if/then" back to to a loop just before an else.
|
||||
# "if/then" back to a loop just before an else.
|
||||
jump_absolute_else ::= jb_else
|
||||
jump_absolute_else ::= CONTINUE ELSE
|
||||
|
||||
|
@@ -558,7 +558,7 @@ class Python37Parser(Python37BaseParser):
|
||||
ifelsestmtl ::= testexpr_cf c_stmts_opt jb_else else_suitel
|
||||
|
||||
# 3.5 Has jump optimization which can route the end of an
|
||||
# "if/then" back to to a loop just before an else.
|
||||
# "if/then" back to a loop just before an else.
|
||||
jump_absolute_else ::= jb_else
|
||||
jump_absolute_else ::= CONTINUE ELSE
|
||||
|
||||
|
@@ -2093,7 +2093,7 @@ def code_deparse(
|
||||
)
|
||||
|
||||
# Just when you think we've forgotten about what we
|
||||
# were supposed to to: Generate source from the Syntax ree!
|
||||
# were supposed to do: Generate source from the Syntax tree!
|
||||
deparsed.gen_source(deparsed.ast, co.co_name, customize)
|
||||
|
||||
deparsed.set_pos_info(deparsed.ast, 0, len(deparsed.text))
|
||||
|
Reference in New Issue
Block a user