We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ecb3cf commit 09b9eddCopy full SHA for 09b9edd
unittests/test_comments.py
@@ -68,13 +68,15 @@ def test(self):
68
tmethod = tclass.member_functions()[0]
69
70
self.assertIn("comment", dir(tmethod))
71
- self._check_comment_content(["/// cxx comment", "/// with multiple lines"],
+ self._check_comment_content(["/// cxx comment",
72
+ "/// with multiple lines"],
73
tmethod.comment)
74
75
tconstructor = tclass.constructors()[0]
76
77
self.assertIn("comment", dir(tconstructor))
- self._check_comment_content(["/** doc comment */"], tconstructor.comment)
78
+ self._check_comment_content(["/** doc comment */"],
79
+ tconstructor.comment)
80
81
for indx, cmt in enumerate(['//! mutable field comment',
82
"/// bit field comment"]):
0 commit comments