I've been experimenting with several Python IDEs, for example PyCharm
or the same IDLE
. Now I'm trying to use PyDev
as a plugin for Eclipse
, and I'm pretty much like it. I would like to know if it is possible to change or modify the default header comment.
For example, if I create a class, it gives this:
'''
Created on Dec 8, 2014
@author: nbro
'''
class MyClass(object):
'''
classdocs
'''
def __init__(self, params):
'''
Constructor
'''
I would like to change the initial comment so that it is always reflected in my projects.