当前位置:  开发笔记 > 编程语言 > 正文

Python:如何检测调试解释器

如何解决《Python:如何检测调试解释器》经验,为你挑选了1个好方法。

如何在我的python脚本中检测它是否由调试解释器运行(即python_d.exe而不是python.exe)?我需要改变传递给扩展的一些dll的路径.

例如,我喜欢在我的python脚本开头做类似的事情:

#get paths to graphics dlls
if debug_build:
    d3d9Path   = "bin\\debug\\direct3d9.dll"
    d3d10Path  = "bin\\debug\\direct3d10.dll"
    openGLPath = "bin\\debug\\openGL2.dll"
else:
    d3d9Path   = "bin\\direct3d9.dll"
    d3d10Path  = "bin\\direct3d10.dll"
    openGLPath = "bin\\openGL2.dll"

我想在扩展中添加一个"IsDebug()"方法,如果它是调试版本(即使用"#define DEBUG"构建),则返回true,否则返回false.但这似乎是一个黑客的东西我确定我可以让python告诉我...



1> jfs..:

Distutils用于sys.gettotalrefcount检测调试python构建:

# ...
if hasattr(sys, 'gettotalrefcount'):
   plat_specifier += '-pydebug'

此方法不依赖于可执行文件名' *_d.exe'.它适用于任何名称.

这种方法是跨平台的.它不依赖于' _d.pyd'后缀.

请参阅调试构建和Misc/SpecialBuilds.txt

推荐阅读
和谐啄木鸟
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有