why "Comment with Block comment" is always disabled in Pycharm 1.5.4

While it's true that Python doesn't have block comments, I've recently switched from Aptana Studio and that had a nice block comment format which preserved spaces/idents, allowed you to uncomment by block and supported wrapping which was neat.

###############################
# a = b
# code_block = commented_out
############################### 

I guess you can't have everything!


Because in Python, there is no such thing as a block comment.

The """ stuff here """ is for documentation.


Ctrl+/ (un)comments all selected lines. Agree it is not intuitive, but works

Tags:

Pycharm