Parameters and return value not shown in quick documentation when using German-Umlauts in docstring
Hi all,
I'm having a problem displaying the params and return value in the quick documentation when using German-Umlauts. Only the describing text from the sphinx docstrings are displayed.
For example:
def setValue(self, value):
u"""
Setzt den Wert in das Objekt für die Anzeige
:param str|unicode value: Der zusetzende Wert für die Einstellung
"""
only displays:
class _Entry(object)
def setValue(self, value)
Inferred type: (self: _Entry, value: str | unicode) -> None
Setzt den Wert in das Objekt für die Anzeige
The generated sphinx documentation ist correct. All files are utf-8 coded. Any ideas?
Thank you
Björn Freise
I'm having a problem displaying the params and return value in the quick documentation when using German-Umlauts. Only the describing text from the sphinx docstrings are displayed.
For example:
def setValue(self, value):
u"""
Setzt den Wert in das Objekt für die Anzeige
:param str|unicode value: Der zusetzende Wert für die Einstellung
"""
only displays:
class _Entry(object)
def setValue(self, value)
Inferred type: (self: _Entry, value: str | unicode) -> None
Setzt den Wert in das Objekt für die Anzeige
The generated sphinx documentation ist correct. All files are utf-8 coded. Any ideas?
Thank you
Björn Freise
Please sign in to leave a comment.