Is there a mechanism to comment out large blocks of Python code?
Right now, the only way I can see of commenting out code is to either start every line with a #, or to enclose the code in triple quotes: """.
The problem with these is that inserting # before every line is cumbersome and """ makes the string I want to use as a comment show up in generated documentation.