You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-03 00:45:53 +08:00
13 lines
332 B
Python
13 lines
332 B
Python
# From 3.6 base64.py
|
|
# Bug was handling "and" condition in the presence of POP_JUMP_IF_FALSE
|
|
# locations
|
|
def _85encode(foldnuls, words):
|
|
return ["z" if foldnuls and word else "y" for word in words]
|
|
|
|
|
|
# From Python 3.6 enum.py
|
|
|
|
|
|
def __new__(metacls, cls, bases, classdict):
|
|
{k: classdict[k] for k in classdict._member_names}
|