You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-02 16:44:46 +08:00
9 lines
201 B
Python
9 lines
201 B
Python
from __future__ import unicode_literals
|
|
|
|
# __future__ unicode_literals changes the way we need to print
|
|
# the below
|
|
# In Python assembler code "a" is u"a" and b"a" is "a".
|
|
a = "a"
|
|
ba = b"a"
|
|
bb = b"b"
|