Skip to content

Commit

Permalink
Merge hell
Browse files Browse the repository at this point in the history
  • Loading branch information
rocky committed Feb 24, 2024
1 parent 1ef631d commit 5a36771
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions uncompyle6/scanners/scanner37base.py
Original file line number Diff line number Diff line change
Expand Up @@ -306,6 +306,7 @@ def tokens_append(j, token):
has_arg=jump_inst.has_arg,
inst_size=jump_inst.inst_size,
has_extended_arg=inst.has_extended_arg,
fallthrough=False,
tos_str=None,
start_offset=None,
)
Expand Down
2 changes: 1 addition & 1 deletion uncompyle6/semantics/n_actions.py
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ def n_const_list(self, node: SyntaxTree):
elem = elem[0]
if elem == "ADD_VALUE":
if self.version < (3, 0, 0):
value = "%r" % elem.pattr
value = "%r" % repr(elem.pattr)
else:
value = "%s" % str(elem.pattr)
else:
Expand Down

0 comments on commit 5a36771

Please sign in to comment.