We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 389cb95 commit 4461970Copy full SHA for 4461970
2 files changed
examples/mandel.py
@@ -3,10 +3,9 @@
3
except:
4
pass
5
6
-
7
def mandelbrot():
8
# returns True if c, complex, is in the Mandelbrot set
9
- @micropython.native
+ #@micropython.native
10
def in_set(c):
11
z = 0
12
for i in range(40):
examples/pyb.py
@@ -1,9 +1,9 @@
1
# pyboard testing functions for CPython
2
import time
def delay(n):
- time.sleep(float(n) / 1000)
+ #time.sleep(float(n) / 1000)
+ pass
rand_seed = 1
def rand():
0 commit comments