This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author iritkatriel
Recipients Kyle.Simpson, iritkatriel, jaraco, r.david.murray
Date 2020-12-03.19:33:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1607023988.55.0.97827529463.issue17735@roundup.psfhosted.org>
In-reply-to
Content
I'm unable to reproduce it now. Has it been fixed?

>>> import x
>>> help(x)
Help on module x:

NAME
    x

FUNCTIONS
    func()

FILE
    c:\users\user\src\cpython\x.py


>>> from importlib import reload
>>> reload(x)
<module 'x' from 'C:\\Users\\User\\src\\cpython\\x.py'>
>>> help(x)
Help on module x:

NAME
    x

FUNCTIONS
    func()

    newfunc()

FILE
    c:\users\user\src\cpython\x.py
History
Date User Action Args
2020-12-03 19:33:08iritkatrielsetrecipients: + iritkatriel, jaraco, r.david.murray, Kyle.Simpson
2020-12-03 19:33:08iritkatrielsetmessageid: <1607023988.55.0.97827529463.issue17735@roundup.psfhosted.org>
2020-12-03 19:33:08iritkatriellinkissue17735 messages
2020-12-03 19:33:08iritkatrielcreate