我想在 set.update() 函数上设置一个断点,但是当我尝试时,我收到一条错误消息。
例子:
ss= set()
ss.update('a')
断点:
b set.update
b ss.update
错误:
The specified object 'ss.update' is not a function
or was not found along sys.path.
The specified object 'set.update' is not a function
or was not found along sys.path.
(请注意,我也尝试在末尾加上括号,例如 ,b set.update()
但仍然出现错误。我没有打印所有错误排列。)