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 prasechen
Recipients paul.moore, prasechen, steve.dower, tim.golden, zach.ware
Date 2020-09-12.03:00:14
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1599879614.84.0.25424318959.issue41770@roundup.psfhosted.org>
In-reply-to
Content
# I create a module:
# \sys.path\xxx.py
a = 9
# And:
>>> import xxx
>>> xxx.a
9
# I delete this imported module and modified this module:
del xxx
# \sys.path\xxx.py
a = 9
b = 8
# And re-import:
>>> import xxx
>>> xxx.b
# But:
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: type object 'xxx' has no attribute 'b'
History
Date User Action Args
2020-09-12 03:00:15prasechensetrecipients: + prasechen, paul.moore, tim.golden, zach.ware, steve.dower
2020-09-12 03:00:14prasechensetmessageid: <1599879614.84.0.25424318959.issue41770@roundup.psfhosted.org>
2020-09-12 03:00:14prasechenlinkissue41770 messages
2020-09-12 03:00:14prasechencreate