If a module "x" imports module "y" with a global variable "z", then this global can be referred or assigned to in "x" with the syntax "y.z" (no "global" keyword preceding) and changes are accessible to class methods in "y" referring to "global z". I assume this is related to namespace/scope? Thanks!