I want to set a breakpoint on the set.update() function, but when I try, I get an error message.
Example:
ss= set()
ss.update('a')
Breakpoint:
b set.update
b ss.update
Errors:
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.
(Note, I also tried with the parentheses at the end, e.g., b set.update(), but still got the error. I didn't print all the permutations of errors.)
pyfile for the module then you can, if there is only apycfile, you will not be able to do that... – avasal Nov 5 '12 at 4:28pyfile, so what do I do with it? – Dannid Nov 5 '12 at 4:51pdb.set_trace()then start debugging – avasal Nov 5 '12 at 4:59updatefor various sets scattered through my code. The second method didn't work for me. I tried two ways: 1. I edited the sets.py file in/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7Result: The program ran without stopping at thepdb.set_trace()2. I tried setting a breakpoint by file:line number thusly,b sets.py:343but got this error:Exception AttributeError: "'NoneType' object has no attribute 'path'" in <function _remove at 0x10dcb6140> ignored– Dannid Nov 5 '12 at 5:58