[issue14663] Cannot comment out comments

2012-04-24 Thread R. David Murray
R. David Murray added the comment: A comment is a comment. *All* characters after the # are ignored, including other #s. Also, Python doesn't have multiline comments. (Well, you can use a triple quoted string as a multiline comment, but it is still a string, and follows the syntax rules of

[issue14663] Cannot comment out comments

2012-04-24 Thread Nul Character
New submission from Nul Character : When attempting to comment out a comment and thus nullifying it, the interpreter just double comments the line. This behavior works with multiline comments, however, the single line comments "double-comment" the line. -- components: Interpreter Core