Closed GoogleCodeExporter closed 9 years ago
It is standard Python practice to use # for comments and ## for commenting out
code that you might want to activate back later. e.g.
# commented out code by Chris
##for i in range(10):
## print(i)
It is not common to turn normal comments into code by removing # and this is
why PyScripter does not provide such command.
In any case it is easy to create an external tool (Python script) that does
that. Look up in the help file the topics for External Tools and Parameters to
get ideas about how to do that. See as an example Tools, Configure Tools, Sort
selection.
Original comment by pyscripter
on 21 Mar 2015 at 12:51
Original issue reported on code.google.com by
dennisf...@gmail.com
on 2 Mar 2015 at 6:37