nyaoouo

Results 12 issues of nyaoouo

i have some research on the ability web event 0X15/0X16 [here](http://bbs.nga.cn/read.php?tid=26797421) about how to deal with ability effects better and some bug fix in chinese But i have some trouble...

enhancement

# Bug report No exception set but raise SystemError when setting `_fields_` of ctypes.Structure in `__init_subclass__` Reproduce code: ``` import ctypes class ParentStructure(ctypes.Structure): def __init_subclass__(cls, **kwargs): cls._fields_ =[('v1',ctypes.c_uint),('v2',ctypes.c_uint),] super().__init_subclass__(**kwargs) class...

type-bug
expert-ctypes

i am trying to run the demo in [https://pymem.readthedocs.io/en/latest/tutorials/inject_python_interpreter.html](https://pymem.readthedocs.io/en/latest/tutorials/inject_python_interpreter.html) but it seems not run successfully by traceback: 2021-03-02 14:08:35,388 - pymem - DEBUG - Process 19392 is being debugged 2021-03-02...

feedback required

i solve it for `re.escape(raw_pattern).replace(b'\.',b'.')` but i think the escape function should be build in or list in the doc that user should pay attention to this point

feedback required

Impl multi context support by adding event queue, test code in windows ```c++ #include #include #include "imgui_impl_glfw.h" #include "imgui_impl_opengl3.h" int main() { if (!glfwInit()) { return -1; } const char...

backends
multi-contexts

just make it work at imgui version v1.89.9

good to prevent wrong stacks e.g. ```python import imgui class Window: def __init__(self, *args, **kwargs): self.args = args self.kwargs = kwargs def __enter__(self): return imgui.begin(*self.args, **self.kwargs) def __exit__(self, exc_type, exc_value,...

this is a reopen pull request for https://github.com/xivapi/SaintCoinach/pull/155

environment: `Python 3.11.8 (tags/v3.11.8:db85d51, Feb 6 2024, 22:03:32) [MSC v.1937 64 bit (AMD64)] on win32` `keystone-engine 0.9.2` (from pip) reproduce code: ```python import capstone import keystone def main(): ks =...

i am working on some inline hook code like ``` jmp qword ptr [rip]; dq 0x7ffff8000; ``` but it seems not directly support variable in keystone i also want to...