Closed ChaiByte closed 3 years ago
Hi @MegChai The current master version works fine with raw docstring. Generating a patch, I get with your example :
# Patch generated by Pyment v0.4.0dev
--- a/issue107.py
+++ b/issue107.py
@@ -1,4 +1,14 @@
def func(a, b):
- r"""test"""
+ r"""test
+
+ Args:
+ a:
+ b:
+
+ Returns:
+
+ Raises:
+
+ """
return a + b
And if using like you -w
the result is:
def func(a, b):
r"""test
Args:
a:
b:
Returns:
Raises:
"""
return a + b
So I guess there is no problem. The only thing is that it is not yet released.
Feel free to reopen the ticket if you think there's still a problem with that.