2006-12-09 | paulb | file changeset files shortlog | Fixed/improved module naming. Introduced a dictionary of imported modules. Fixed aliases used with import-related statements so that the bottommost module is associated with (or used to obtain) aliases, not the uppermost module. Added tests of packages. |
paulb@158 | 1 | def f(a, b, c): |
paulb@158 | 2 | return c |
paulb@158 | 3 | |
paulb@158 | 4 | def p(x, y, z): |
paulb@158 | 5 | return x, y |