ttp 这个包,template text parser ,居然有遇到某种情况(比如取不到 attribute)直接抛 SystemExit 的操作。。 起了一个 fastapi 作为解析服务,调用接口使用 ttp 进行解析的时候,直接把我服务干掉了,我都楞了好一会。 甚至这种情况如果要写异常捕获,还得 except BaseException 或者裸 except 才奏效,因为 SystemExit 是一个直接继承 BaseException 的异常类,我写代码一般也只是捕获 Exception 而已,这我都觉得捕获的宽了。