Mark pynput as completed (#9235)

This commit is contained in:
Nikita Sobolev
2022-11-23 07:46:29 +03:00
committed by GitHub
parent ae58142e6e
commit a580eda64e
6 changed files with 86 additions and 1 deletions

View File

@@ -1,7 +1,16 @@
# These __init__ methods have *args, **kwargs arguments on some platforms, but not others
pynput.keyboard.Controller.__init__
pynput.mouse.Controller.__init__
# stubtest issues with non-`type` metaclasses, see https://github.com/python/mypy/issues/13316
pynput.keyboard.Controller._Key
pynput.keyboard._base.Controller._Key
pynput.keyboard._dummy.Controller._Key
# Platform specific private utils:
pynput._util.xorg_keysyms
pynput._util.xorg
pynput._util.win32_vks
pynput._util.win32
pynput._util.uinput
pynput._util.darwin_vks
pynput._util.darwin

View File

@@ -0,0 +1,5 @@
# These __init__ methods have *args, **kwargs arguments on some platforms, but not others
pynput.keyboard.Controller.__init__
# Platform specific implementation detail:
pynput.keyboard.Controller.keyboard_mapping

View File

@@ -0,0 +1,2 @@
# These __init__ methods have *args, **kwargs arguments on some platforms, but not others
pynput.keyboard.Controller.__init__