You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-04 01:09:52 +08:00
Python 3.x bug in getting parameter of ** argument
This commit is contained in:
Binary file not shown.
@@ -2,3 +2,11 @@
|
|||||||
# Bug is getting params correct: timeout before **kwargs
|
# Bug is getting params correct: timeout before **kwargs
|
||||||
def call(*popenargs, timeout=None, **kwargs):
|
def call(*popenargs, timeout=None, **kwargs):
|
||||||
return
|
return
|
||||||
|
|
||||||
|
# From 3.4 asyncio/base_events.py
|
||||||
|
# Bug was in pickin up name of ** (kwargs)
|
||||||
|
def subprocess_shell(self, protocol_factory, cmd, *, stdin=subprocess.PIPE,
|
||||||
|
stdout=subprocess.PIPE, stderr=subprocess.PIPE,
|
||||||
|
universal_newlines=False, shell=True, bufsize=0,
|
||||||
|
**kwargs):
|
||||||
|
return
|
||||||
|
Reference in New Issue
Block a user