You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-03 00:45:53 +08:00
7 lines
233 B
Python
7 lines
233 B
Python
# From python 3.4 window_events.py
|
|
# Problem was in handling MAKE_CLOSURE or
|
|
# getting the '*' parameter correct.
|
|
class _OverlappedFuture(futures.Future):
|
|
def __init__(self, ov, *, loop=None):
|
|
super().__init__(loop=loop)
|