micropython

Change of tests/failure/shadow_globals_builtins.py

339:b8c6ae738723
tests/failure/shadow_globals_builtins.py
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/tests/failure/shadow_globals_builtins.py	Sat Jun 12 21:33:36 2010 +0200
     1.3 @@ -0,0 +1,10 @@
     1.4 +#!/usr/bin/env python
     1.5 +
     1.6 +c = max(4, 5)
     1.7 +
     1.8 +def max(a, b):
     1.9 +    return a
    1.10 +
    1.11 +result_2 = max(2, 3)
    1.12 +
    1.13 +# vim: tabstop=4 expandtab shiftwidth=4