micropython

Change of tests/ambiguous_names.py

40:146aca040dae
tests/ambiguous_names.py
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/tests/ambiguous_names.py	Sun Feb 10 22:05:23 2008 +0100
     1.3 @@ -0,0 +1,8 @@
     1.4 +#!/usr/bin/env python
     1.5 +
     1.6 +def g(x):
     1.7 +    b = 3
     1.8 +    global b
     1.9 +    b = 4
    1.10 +
    1.11 +# vim: tabstop=4 expandtab shiftwidth=4