Merge branch 'python-doxygen-quotes'
* python-doxygen-quotes: Fix generated Python code for Doxygen comments with triple quotes Fix generated Python code for Doxygen comments ending with quote
This commit is contained in:
commit
991c2afe11
4 changed files with 51 additions and 3 deletions
|
|
@ -131,3 +131,13 @@ Spaces at the start of line should be taken into account:
|
|||
:type fileName: string
|
||||
:param fileName: name of the log file"""
|
||||
);
|
||||
|
||||
comment_verifier.check(inspect.getdoc(doxygen_misc_constructs.doc_ends_with_quote),
|
||||
r'''This doc comment ends with a quote: "and that's ok"'''
|
||||
);
|
||||
|
||||
comment_verifier.check(inspect.getdoc(doxygen_misc_constructs.doc_with_triple_quotes),
|
||||
r'''This comment contains embedded triple-quoted string:
|
||||
|
||||
"""How quaint"""'''
|
||||
);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue