You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-04 09:22:40 +08:00
Had got the order backwards in: class Foo(a=B.c) String defaults in default parameter tuples need to be quoted
18 lines
584 B
Python
18 lines
584 B
Python
# From 3.6 base64.py. Bug was handling *, and keyword args
|
|
def a85decode(b, *, foldspaces=False, adobe=False, ignorechars=b' \t\n\r\v'):
|
|
return
|
|
|
|
# From 3.6 configparser.py. Same problem as above.
|
|
_UNSET = object()
|
|
def get(self, section, option, *, raw=False, vars=None, fallback=_UNSET):
|
|
return
|
|
|
|
# From 3.6 compileall.py Bug is making default values are in quotes
|
|
def compile_command(source, filename="<input>", symbol="single"):
|
|
return
|
|
|
|
# From 3.6 _pyio.py. Bug was in getting order of metaclass=abc.ABCMeta right
|
|
import abc
|
|
class IOBase(metaclass=abc.ABCMeta):
|
|
pass
|