2013-10-31 | Paul Boddie | file changeset files shortlog | Added remarks about local namespaces and name usage observations. | syspython-as-target |
paul@501 | 1 | #!/usr/bin/env python |
paul@501 | 2 | |
paul@501 | 3 | from imported_package import module |
paul@501 | 4 | |
paul@501 | 5 | result_456 = module.attribute # cannot assign to this |
paul@501 | 6 | |
paul@501 | 7 | # vim: tabstop=4 expandtab shiftwidth=4 |