You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-03 16:59:52 +08:00
Syntax error typo
This commit is contained in:
@@ -98,7 +98,7 @@ class Scanner34(scan3.Scanner3):
|
|||||||
# other than LOAD_CONST, but we'll start out with just this for now.
|
# other than LOAD_CONST, but we'll start out with just this for now.
|
||||||
if opname in ['LOAD_CONST']:
|
if opname in ['LOAD_CONST']:
|
||||||
const = inst.argval
|
const = inst.argval
|
||||||
if hasattr(const, 'co_name')):
|
if hasattr(const, 'co_name'):
|
||||||
if const.co_name == '<lambda>':
|
if const.co_name == '<lambda>':
|
||||||
opname = 'LOAD_LAMBDA'
|
opname = 'LOAD_LAMBDA'
|
||||||
elif const.co_name == '<genexpr>':
|
elif const.co_name == '<genexpr>':
|
||||||
|
Reference in New Issue
Block a user