-
-
Notifications
You must be signed in to change notification settings - Fork 143
Closed
Labels
invalidThis is not a (valid) bug reportThis is not a (valid) bug report
Description
def func(s: str):
"""
Some doc
Examples:
```python
func("C:\\\\Data\\\\foo.bar")
func("C:\\Data\\foo.bar")
func('/data/foo.bar')
```
"""
pass
__all__ = \
[
'func',
]
Probably caused by the Python itself, which "eats" backslashes in the triple-quoted string.
print(func.__doc__)
Prints:
Some doc
Examples:
```python
func("C:\\Data\\foo.bar")
func("C:\Data\foo.bar")
func('/data/foo.bar')
```
Expected Behavior
Actual Behavior
Additional info
- pdoc version: 0.6.3
Metadata
Metadata
Assignees
Labels
invalidThis is not a (valid) bug reportThis is not a (valid) bug report