micropython

Change of tests/failure/ambiguous_names.py

43:7adb33e8b1d1
tests/failure/ambiguous_names.py
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/tests/failure/ambiguous_names.py	Sun Feb 17 02:38:04 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