diff options
author | Damien George <damien.p.george@gmail.com> | 2014-01-24 22:26:13 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-01-24 22:26:13 +0000 |
commit | 4461970da027ce16b41189f75257239f46a3b087 (patch) | |
tree | 23e2850a9304e6f3f2cfd5863b8ce3a54ee01f96 /examples/mandel.py | |
parent | 389cb950e8a53fdfd2841fbf90979e442d25318b (diff) | |
download | micropython-4461970da027ce16b41189f75257239f46a3b087.tar.gz micropython-4461970da027ce16b41189f75257239f46a3b087.zip |
Small edits to examples to get them working again with unix/micropython.
Diffstat (limited to 'examples/mandel.py')
-rw-r--r-- | examples/mandel.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/mandel.py b/examples/mandel.py index d2b34fff83..bbb8086470 100644 --- a/examples/mandel.py +++ b/examples/mandel.py @@ -3,10 +3,9 @@ try: except: pass - def mandelbrot(): # returns True if c, complex, is in the Mandelbrot set - @micropython.native + #@micropython.native def in_set(c): z = 0 for i in range(40): |