Actually sidestepping the "comments bad" debate, if you can't read your code two weeks later, you have bigger problems. #readablecode
@freemo I agree. But related, comments shouldn't excuse coders from using code practices that maximize their code's comprehensibility (which, as you pointed out, may have a close limit if it's code for interfacing with external dependencies)
@worldsendless Agreed, code should be readable even with comments. Comments generally shouldnt be used to explain the code line by line unless your doing something counter interpretive that needs pointing out (which hopefully is rare). Comments should be focused and the method and class level describing what a method does, the valid inputs it accepts, what errors it will throw and why, and what return values it will provide as well as their type.
Comments shouldnt describe algorithms so much as interface bounaries (public methods and classes)
@worldsendless Its equally true if those 12 methods arent external, as then you need to go look at the code for all 12 methods.
Honestly IMO there is **never** an excuse not to document methods unless the program you are writing is very small to the point of being a simple script. Even then its still probably a good idea.