摘要: pdb中对args输出格式的调整 在pdb当中输出args,其行为和程序正常运行期间的行为略有不同。 示例代码: class MyClass: def my_func(self, *args, **kwargs): breakpoint() print(f"args: {args}") print( 阅读全文
posted @ 2024-12-27 15:23 Gold_stein 阅读(18) 评论(0) 推荐(0)