Rukchad Wongprayoon <mooping3rob...@gmail.com> added the comment:

here's the example code

parent/a.py
```py
def multiply():
 """multiply stuff"""
 return 69*420
```

parent/another folder/b.py
```py
import sys
sys.path.append('..')
import a
a.multiply.__doc__ # None
```

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue47148>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to