Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的一个模块中偶然发现了以下内容,并试图了解正在发生的事情。在最基本的层面上,我有一个这样的文件:
# myfile.py # import ctypes import tempfile if __name__ == '__main__': pass
执行
$ python myfile.py
给
Aborted
作为输出,但如果我只是切换导入的顺序,首先导入 tempfile,它会在没有任何输出的情况下执行。
“流产”从何而来?为什么?
您是否尝试过 Python interpeter?:
>>>import ctypes
和
>>>import tempfile
我认为您应该首先隔离错误以便对其进行跟踪。