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 eric.snow
Recipients Arfrever, BreamoreBoy, eric.snow, georg.brandl, gregory.p.smith, r.david.murray, rhettinger, tim.peters
Date 2013-11-05.17:42:53
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1383673373.76.0.138963255017.issue19499@psf.upfronthosting.co.za>
In-reply-to
Content
+0 to just doing a reload.  At the point you show someone "import this", it may be premature to be explaining reloading to them.  Python is great because you usually don't have to hand-wave through some concepts in order to explain others. [1]

Also, under Python 3 you have to import reload() separately:

from imp import reload
reload(this)


[1] http://www.boredomandlaziness.org/2011/08/scripting-languages-and-suitable.html
History
Date User Action Args
2013-11-05 17:42:53eric.snowsetrecipients: + eric.snow, tim.peters, georg.brandl, rhettinger, gregory.p.smith, Arfrever, r.david.murray, BreamoreBoy
2013-11-05 17:42:53eric.snowsetmessageid: <1383673373.76.0.138963255017.issue19499@psf.upfronthosting.co.za>
2013-11-05 17:42:53eric.snowlinkissue19499 messages
2013-11-05 17:42:53eric.snowcreate