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 ppperry
Recipients Sean Hunt, ppperry
Date 2016-05-30.14:08:26
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1464617306.09.0.128436173493.issue27159@psf.upfronthosting.co.za>
In-reply-to
Content
This issue should really be split into (at least) four seperate issues.

The third problem (reloading relatively imported modules), can be done by doing `someclass = getattr(importlib.reload(sys.modules[someclass.__module__]),someclass.__name__)`. It also has nothing to do with relative imports, instead involving reloading the modules of classes imported using the `from ... import ...` statement.
History
Date User Action Args
2016-05-30 14:08:26ppperrysetrecipients: + ppperry, Sean Hunt
2016-05-30 14:08:26ppperrysetmessageid: <1464617306.09.0.128436173493.issue27159@psf.upfronthosting.co.za>
2016-05-30 14:08:26ppperrylinkissue27159 messages
2016-05-30 14:08:26ppperrycreate