Beispiel #1
0
 def stop_on_entry(self):
     main_thread = pydevd_utils.get_main_thread()
     if main_thread is None:
         pydev_log.critical('Could not find main thread while setting Stop on Entry.')
     else:
         info = set_additional_thread_info(main_thread)
         info.pydev_original_step_cmd = CMD_STOP_ON_START
         info.pydev_step_cmd = CMD_STEP_INTO_MY_CODE
Beispiel #2
0
 def stop_on_entry(self):
     main_thread = pydevd_utils.get_main_thread()
     if main_thread is None:
         pydev_log.critical('Could not find main thread while setting Stop on Entry.')
     else:
         info = set_additional_thread_info(main_thread)
         info.pydev_step_cmd = CMD_STEP_INTO_MY_CODE
         info.pydev_stop_on_entry = True