Python: I'm getting an 'indented block' error on the last 3 quotes (“”") of my comments under functions. What's up?
问题 Super odd, no? The offending code: def main(): """ main function """ # Argument handling args = sys.argv[1:] if not args: print "usage is: ... The third quote is where I get the usual indentation error: >>>Import someScript Traceback (most recent call last): File "<stdin>", line 1, in <module> File "someScript.py", line 24 """ ^ If I delete the comments (obviously I don't want to) then the next function to be defined gets the same error, at the same location of its comments. If I delete all