如果我有一個回溯如: Traceback (most recent call last):
File "...\overall_input.py", line 5, in setup_data
MODULE1.function_name()
File "...\MODULE1.py", line 5, in function_name
value = 1/0
所以我前幾天做了一項學費課程作業。這是我的程序。我希望這是自我解釋。 (這是Python的,順便說一句。) def print_intro():
print ("Welcome to the tuition program. This program will calculate your tuition cost.")
def get_id_num():
grad_status
在運行我的QT5項目,我得到警告,如 QObject::startTimer: Timers cannot be started from another thread
等。 儘管許多答案涵蓋了在給定的代碼中導致這些警告或者如何糾正它們,我想知道,其中代碼中的是警告生成的一個回溯。 這是因爲我認爲這是由於我的某些Qt功能的不正確使用導致了內部警告的產生,例如,在上述情況下,使用定時器執行的功能
我想了解我收到的回溯錯誤。見下文。 Traceback (most recent call last):
File "test.py", line 291, in test_cache_in_function
self.assertTrue("sunset" in testfilestr,"Testing that the sunset request was cached")