Change the function docstring via ip2py.
(func)
| 166 | |
| 167 | |
| 168 | def ipdocstring(func): |
| 169 | """Change the function docstring via ip2py. |
| 170 | """ |
| 171 | if func.__doc__ is not None: |
| 172 | func.__doc__ = ip2py(func.__doc__) |
| 173 | return func |
| 174 | |
| 175 | |
| 176 | # Make an instance of the classes for public use |
nothing calls this directly
no outgoing calls
no test coverage detected