BuZhi

Results 3 comments of BuZhi

@tingQian ➜ /workspaces/aiormq (feature/abc-docs-update) $ poetry run pytest tests/test_taskwrapper_throw.py -s ============================================================================================== test session starts =============================================================================================== platform linux -- Python 3.12.1, pytest-9.0.1, pluggy-1.6.0 rootdir: /workspaces/aiormq configfile: pyproject.toml plugins: aiomisc-pytest-1.3.4, asyncio-1.3.0 asyncio:...

这是问题分析 TaskWrapper.throw 方法(当前实现) # aiormq/abc.py:TaskWrapper.throw() def throw(self, exception: ExceptionType) -> None: self._exception = exception # 保存原始异常 self.task.cancel() # ❌ 问题:没有传递异常信息! TaskWrapper 的异常替换机制 # aiormq/abc.py:TaskWrapper.__inner() async def __inner(self) -> Any: try:...