> You can share globals across modules by means of import. If you want > to assign to the global, make sure you don't use from-import, but > import the module, then assign via module.globalname = value. Thanks for this reminder. - Edward