Is it possible to customise emacs such that python docstrings are highlighted the same way as comments are? Here is an example of a python docstring
def python_function(argument):
"""
doc string here
may be multiline
"""
return some_func(argument)