XMI_ID comment lines break docstrings
Brought to you by:
jakob_oswald,
polki
Given a class or method docstring (""" .... """) PyUML reworks this docstring and adds a #-prefixed line for XMI_ID. However, docstrings are extracted by a variety of tools, including Python itself, for producing documentation on the class or method. As such, since the #-prefixed line is not a comment and thus gets extracted verbatim, thus polluting documentation.
The way forward would probably be to skip to the matching end """ and then put the XMI_ID line underneath it.