MCPcopy Create free account
hub / github.com/EasyIME/PIME / chunks

Method chunks

python/cinbase/__init__.py:2795–2797  ·  view source on GitHub ↗
(self, l, n)

Source from the content-addressed store, hash-verified

2793
2794 # List 分段
2795 def chunks(self, l, n):
2796 for i in range(0, len(l), n):
2797 yield l[i:i+n]
2798
2799 def getKeyState(self, keyCode):
2800 return ctypes.WinDLL("User32.dll").GetKeyState(keyCode)

Callers 2

onKeyDownMethod · 0.95
switchMenuCandMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected