summaryrefslogtreecommitdiffstatshomepage
path: root/examples/mandel.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/mandel.py')
-rw-r--r--examples/mandel.py3
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):