[issue33668] Wrong behavior of help function on module

2019-07-31 Thread Dong-hee Na
Dong-hee Na added the comment: I close PR 8284. If there is a chance to work with this issue. Please let me know Thanks! -- ___ Python tracker ___

[issue33668] Wrong behavior of help function on module

2018-07-14 Thread Dong-hee Na
Dong-hee Na added the comment: I've checked both cases are now working on my patch. -- ___ Python tracker ___ ___ Python-bugs-list

[issue33668] Wrong behavior of help function on module

2018-07-14 Thread Dong-hee Na
Dong-hee Na added the comment: This script works well on Python2 but not on Python3. I've submitted a PR. Please take a look. -- nosy: +corona10 ___ Python tracker ___

[issue33668] Wrong behavior of help function on module

2018-07-14 Thread Dong-hee Na
Change by Dong-hee Na : -- keywords: +patch pull_requests: +7818 stage: -> patch review ___ Python tracker ___ ___

[issue33668] Wrong behavior of help function on module

2018-05-31 Thread Ivan Levkivskyi
Ivan Levkivskyi added the comment: Adding Yury as an inspect expert. I don't think this is something urgent, we can probably postpone this to 3.7.1. -- nosy: +yselivanov ___ Python tracker

[issue33668] Wrong behavior of help function on module

2018-05-31 Thread Ivan Levkivskyi
Ivan Levkivskyi added the comment: Hm, replacing the return with a random string, this leads to another crash: Traceback (most recent call last): File "", line 1, in File "/Users/ilevkivskyi/src/cpython/Lib/_sitebuiltins.py", line 103, in __call__ return pydoc.help(*args, **kwds)

[issue33668] Wrong behavior of help function on module

2018-05-31 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- nosy: +levkivskyi ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33668] Wrong behavior of help function on module

2018-05-31 Thread Timo Furrer
Change by Timo Furrer : -- nosy: +tuxtimo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33668] Wrong behavior of help function on module

2018-05-28 Thread Oleg Oleynik
New submission from Oleg Oleynik : I write file test.py: def __getattr__(key): return None help(__name__) when I try to run it I've got error: Traceback (most recent call last): File "test.py", line 5, in help(__name__) File "C:\Program