You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-04 09:22:40 +08:00
Update news
This commit is contained in:
@@ -96,14 +96,10 @@ class PythonParser(GenericASTBuilder):
|
||||
def fix(c):
|
||||
s = str(c)
|
||||
last_token_pos = s.find('_')
|
||||
<<<<<<< HEAD
|
||||
if last_token_pos == -1:
|
||||
return s
|
||||
else:
|
||||
return s[:last_token_pos]
|
||||
=======
|
||||
return s if last_token_pos == -1 else s[:last_token_pos]
|
||||
>>>>>>> master
|
||||
|
||||
prefix = ''
|
||||
if parent and tokens:
|
||||
|
Reference in New Issue
Block a user